stagent
01Plugin Claude Code
Plugin marketplace listing 1 plugin: stagent.
Plugin Claude Code
Plugin marketplace listing 1 plugin: stagent.
Plugin Claude Code
Plan-Execute-Review development workflow with brainstorming, executor agent, and adversarial code review loop.
Agent
Generic stage executor for the stagent plugin. Launched by the main agent for any subagent-typed stage in a workflow. Self-resolves its stage context from state.md via subagent-bootstrap.sh — does NOT rely on the main agent's prompt for path / epoch / input data. Then follows the stage's canonical instructions file…
Command
Cancel the active dev workflow loop (archives by default, --hard to wipe).
Command
Resume a paused dev workflow, or take over a cloud session from another machine.
Command
Create a new workflow suite (published to hub by default), or edit an existing one with --flow=.
Command
Pause the active dev workflow loop without clearing state — resume later with /stagent:continue.
Command
Sign in to the stagent cloud server.
Command
Sign out — remove the local stagent cloud token.
Command
Publish a local workflow directory to the cloud workflow hub.
Command
Start the dev workflow — inline planning, then autonomous execute→verify→review→QA loop.
Command
Show the signed-in stagent cloud identity.
Hook
Runs when a session starts, executing session-start.sh. From jie-worldstatelabs/stagent.
Hook
Runs when a session ends, executing session-end.sh. From jie-worldstatelabs/stagent.
Hook
Runs when the agent finishes a response, executing stop-hook.sh. From jie-worldstatelabs/stagent.
Hook
Runs when you submit a prompt, before the agent sees it, executing user-prompt-submit.sh. From jie-worldstatelabs/stagent.
Hook
Runs when the agent sends a notification, executing notification-hook.sh. From jie-worldstatelabs/stagent.
Hook
Runs before the agent uses a tool for Agent, Bash and AskUserQuestion tool calls, executing agent-guard.sh, plugin-path-rewrite.sh, ask-user-question-hook.sh and activity-hook.sh (4 commands). From jie-worldstatelabs/stagent.
Hook
Runs after a tool call finishes for Write, Edit, MultiEdit, Agent and AskUserQuestion tool calls, executing postwrite-hook.sh, agent-ledger-add.sh, ask-user-question-hook.sh and activity-hook.sh (4 commands). From jie-worldstatelabs/stagent.
Hook
Runs when a subagent finishes, executing agent-ledger-remove.sh. From jie-worldstatelabs/stagent.
Skill Claude CodeCodex
Create a new workflow suite from a natural-language description, or edit an existing one when --flow= is passed. Dispatches the create-workflow stagent (plan → write → validate loop) — does not write files directly.
Skill Claude CodeCodex
Bootstrap a dev workflow session (for /stagent:start): parse flags, derive a topic from the task description, call setup-workflow.sh, and hand off to the workflow loop skill. Does NOT drive the state machine — that's stagent:stagent's job.
Skill Claude CodeCodex
Drive the dev workflow state machine: read state.md, execute the current stage (inline or subagent), transition via update-status.sh, loop until terminal. Precondition: state.md already exists (some upstream caller bootstrapped it). Does NOT bootstrap.