From operations
Analyze and improve business processes. Trigger with "this process is slow", "how can we improve", "streamline this workflow", "too many steps", "bottleneck", or when the user describes an inefficient process they want to fix.
How this skill is triggered — by the user, by Claude, or both
Slash command
/operations:process-optimizationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze existing processes and recommend improvements.
Analyze existing processes and recommend improvements.
Lark-native execution (depth core: LARK-PATTERNS, LARK-RECIPES, LARK-FUSION). Map the current state from real Lark signals, not guesses: pull the existing SOP from Wiki/Docs (
lark_doc_search/lark_doc_fetch, jq-projected, P3), measure approval-step waiting from Lark Approval, and quantify handoffs from Lark Task cycle times. Surface the before/after + recommendations as an interactive card (P4), spin improvement items into Lark Tasks (P2 dry_run), and update the SOP in Wiki (P8).
Map current state from real data:
lark_doc_search (jq .data.results[].title) → lark_doc_fetch (jq .data.content[:4000]) to recover the documented steps (P3).approval-flow-sla to find the bottleneck node and per-approver dwell time — that IS the "waiting waste" measurement.lark_base_search (REQUIRES search_fields, no jq — narrow with select_fields; discover field names via lark_api GET /open-apis/bitable/v1/apps/{base}/tables/{table}/fields if unknown) or Lark Task cycle times to quantify how long items sit between handoffs.Quantify and recommend (card, P4):
lark_im_card_send, print_json: true first): status pills per step (🟢 keep / 🟡 streamline / 🔴 cut), actions footer ("Apply changes" / "Open SOP").Execute the improvement plan:
lark_contact_search, P1) → lark_task_create(dry_run) → confirm → commit.base-automation to build the Base workflow/bot reminder rather than describing automation abstractly.Update the SOP (Wiki, P8):
lark_wiki_node_create / lark-doc skill) so the documented process matches the optimized one.Produce a before/after process comparison with specific improvement recommendations, estimated impact, and an implementation plan — measured from real Lark signals, surfaced as a card, executed as Lark Tasks, and reflected back into the Wiki SOP.
npx claudepluginhub larkcowork/lark-cowork-plugins --plugin operationsProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.