agent-wrap
Launch, list, and manage AI agents in tmux sessions through the wrap service. Use for running interactive agent sessions with various providers and models.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Launch, list, and manage AI agents in tmux sessions through the wrap service. Use for running interactive agent sessions with various providers and models.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Store, search, and manage shared knowledge through the memory service. Use for persisting information across agent sessions, semantic search over stored knowledge, and inter-agent knowledge sharing.
Browse, read, and author per-project knowledgebase documents through the knowledge service CLI. Use for creating, updating, listing, and reading markdown documents stored against a project, and reconciling DB rows against disk.
Cut a new agentd release. Suggests the next semver version from conventional commits (or accepts an explicit `x.y.z`), bumps the workspace version, regenerates the changelog with git-cliff, then commits, tags, and pushes the `v*` tag that triggers the Release workflow. Use when the user runs /release or asks to publish/cut/tag a new version.
Create a new GitHub plan issue with the "Plan: <title>" format, appropriate labels, and structured body. Use when the user wants to capture a high-level plan for future work.
Ask the human user a question during workflow execution and check for answers. Use for agent-to-human Q&A, collecting decisions, and reacting to human responses via ask_response workflow triggers.
Branch stacking and PR management with git-spice for the agentd project. Use when creating stacked branches, submitting PRs, syncing with upstream, resolving rebase conflicts, or navigating a branch stack.
| name | agent-wrap |
| description | Launch, list, and manage AI agents in tmux sessions through the wrap service. Use for running interactive agent sessions with various providers and models. |
Skill for interacting with the agentd wrap service — manages AI agent sessions running in tmux.
# Launch Claude Code in a tmux session
agent wrap launch my-session \
--path /path/to/project \
--agent claude-code
# Launch with a specific model
agent wrap launch my-session \
--path . \
--agent claude-code \
--model claude-sonnet-4-6
# Launch with a different provider
agent wrap launch my-session \
--path . \
--agent crush \
--provider openai \
--model gpt-4o
# Launch with Ollama (local models)
agent wrap launch my-session \
--path . \
--agent opencode \
--provider ollama \
--model llama3
# Launch with custom layout
agent wrap launch my-session \
--path . \
--agent claude-code \
--layout-json '{"width": 200, "height": 50}'
claude-code — Anthropic's Claude Code CLIcrush — Alternative agent interfaceopencode — Open-source code agentanthropic — Anthropic API (default)openai — OpenAI APIollama — Local Ollama instance# List all active tmux sessions
agent wrap list
# JSON output
agent wrap list --json
agent wrap kill my-session
agent wrap health