You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add agentskit run command to @agentskit/cli. This command executes runtime agents directly from the terminal — no interactive chat, just task → result.
Accepts a task string plus flags for provider, model, skill, tools, memory, system prompt, max steps, etc. Uses AgentRunner from @agentskit/runtime under the hood. Outputs the agent's final result to stdout (or streams steps with --verbose).
Parent PRD
#2
What to build
Add
agentskit runcommand to@agentskit/cli. This command executes runtime agents directly from the terminal — no interactive chat, just task → result.Accepts a task string plus flags for provider, model, skill, tools, memory, system prompt, max steps, etc. Uses AgentRunner from
@agentskit/runtimeunder the hood. Outputs the agent's final result to stdout (or streams steps with--verbose).Acceptance criteria
agentskit run <task>command added to CLI--provider,--model,--key,--skill,--tools,--memory,--system-prompt,--max-steps,--verboseagentskit chat)--verboseflag streams agent steps (tool calls, reasoning) to stderragentskit runwith demo provider completes a taskBlocked by
User stories addressed