From core
Constructs, tracks, reviews, and executes a tailored adaptive workflow plan for user requests using plan-manager and building blocks like research, planning, and execution.
npx claudepluginhub griddynamics/rosetta --plugin core<adhoc_flow> <description_and_purpose> Problem: Fixed workflows cannot cover the combinatorial space of real requests; orchestrators lock into rigid classification. Solution: Meta-workflow — construct a bespoke plan from building blocks, persist via `plan-manager` skill, review, execute with tracking. Each user turn can extend, adapt, or restart. </description_and_purpose> <models> - large (smart, slow): claude-opus-4-6, gpt-5.3-codex-high, gpt-5.4-high, gemini-3.1-pro-preview - medium (workhorse): claude-sonnet-4-6, gpt-5.3-codex-medium, gpt-5.4-medium, glm-5, kimi-k2.5, minimax-m2.5 ...
/delegateOrchestrates complex tasks: decomposes into agent waves/tasks, plans execution, awaits user approval, then executes via subagents or teams.
/planCaptures user intent via 5 structured questions, creates strategic execution plan, saves to .claude/session-plan.md and session-intent.md for review.
/create-workflowScaffolds a custom swarm workflow by generating a mode skill (.claude/skills/<name>-mode/SKILL.md) and shortcut command (.claude/commands/<name>.md).
/adaptive-workflowDiscovers available workflows via MCP, analyzes user request intent and requirements, selects the best match, and executes with JIT resource loading.
/quickExecutes ad-hoc tasks from a description using learnship quick workflow with atomic commits, state tracking, and no full planning.
/runParses and executes legacy inline orchestration workflow syntax supporting raw operators, YAML frontmatter templates, and temporary AI agents with model overrides.
Share bugs, ideas, or general feedback.
<adhoc_flow>
<description_and_purpose>
Problem: Fixed workflows cannot cover the combinatorial space of real requests; orchestrators lock into rigid classification.
Solution: Meta-workflow — construct a bespoke plan from building blocks, persist via plan-manager skill, review, execute with tracking. Each user turn can extend, adapt, or restart.
</description_and_purpose>
Match to cognitive demand. Match to current tool.
<plan_manager>
USE SKILL plan-manager as the main execution planner (file-based, via npx rosettify plan).
Orchestrator and subagents:
next to drive execution loop until plan_status: complete and count: 0.update_status after each step.upsert to adapt plan mid-execution (add/remove phases/steps).Orchestrator:
ACQUIRE plan-manager/assets/pm-schema.md FROM KB for data structure reference.
</plan_manager>
<building_blocks>
Compose these into plan phases/steps to build any execution workflow.
reasoning (7D) to decompose into sub-problems with decisions and trade-offsplanning to build sequenced WBS; persist via plan-manager upsert with subagent/role/modeltech-specs to generate target technical implementation specs; makes AI to figure out entire solution, instead of discovering something as a surpriseupsert to adapt mid-execution; loop</building_blocks>
<workflow_phases>
<build_plan phase="2">
reasoning if needed or LARGE.</build_plan>
<review_plan phase="3" if="MEDIUM, LARGE" subagent="reviewer" role="Plan reviewer of AI automated tasks">
</review_plan>
<execute_plan phase="4" loop="true">
</execute_plan>
<review_and_summarize phase="5">
</review_and_summarize>
</workflow_phases>
<best_practices>
</best_practices>
</adhoc_flow>