一键导入
copy-agent
Copy an agent from Product Forge to user or project level
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Copy an agent from Product Forge to user or project level
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Capture browser console, network, and performance logs for debugging. Auto-loads when debugging browser issues, analyzing errors, or investigating page behavior. Provides systematic log capture workflow using Chrome DevTools MCP.
Set up tmux notification system for Claude Code sessions
Use when facing complex, multi-layered debugging issues that require coordinated investigation across different domains (frontend, backend, database, network, etc). Spawns specialized debug expert agents to handle specific aspects of the investigation.
Creates a concise engineering implementation plan with team orchestration using Task coordination tools. Use when planning multi-step implementation work that requires team coordination, task dependencies, and parallel execution strategies.
Set up a new Django 6.0 project with modern tooling (uv, direnv, HTMX, OAuth, DRF, testing). Use when the user wants to create a Django project from scratch with production-ready configuration.
Download YouTube video transcripts as readable text files. Use when extracting transcripts from videos for analysis, documentation, or content review.
| name | copy-agent |
| description | Copy an agent from Product Forge to user or project level |
| argument-hint | [<plugin>:<agent-name>] [--user | --project] |
Copy an agent from Product Forge plugins to your user-level (~/.claude/) or project-level (.claude/) directory.
# List available agents
/copy-agent
# Copy to project (default)
/copy-agent product-design:product-architect
# Copy to user level
/copy-agent git-workflow:commit-expert --user
# Explicit project level
/copy-agent python-experts:django-expert --project
<plugin>:<agent-name> - The agent to copy in plugin:name format--user - Copy to ~/.claude/{plugin}/agents/{name}.md--project - Copy to .claude/{plugin}/agents/{name}.md (default)Agents are single markdown files (.md) containing:
# Project-level (default)
.claude/
└── git-workflow/
└── agents/
└── commit-expert.md
# User-level (--user)
~/.claude/
└── git-workflow/
└── agents/
└── commit-expert.md
When the user runs this command:
Scan Product Forge plugins cache for all available agents:
ls ~/.claude/plugins/cache/product-forge-marketplace/*/agents/*.md 2>/dev/null
For each plugin with agents, list them with descriptions:
name, description, and model{plugin}:{agent-name} ({model}) - {description}Display formatted list:
Available agents from Product Forge:
product-design:
product-architect (sonnet) - Full product development guidance
prd-orchestrator (sonnet) - PRD lifecycle management
qa-tester (sonnet) - Manual QA test procedure creation
web-debugger (sonnet) - Web application debugging
...
git-workflow:
commit-expert (haiku) - Git commit specialist
rebase-expert (haiku) - Git rebase specialist
code-review-expert (sonnet) - Code review orchestrator
...
python-experts:
django-expert (sonnet) - Django web application specialist
fastapi-expert (sonnet) - FastAPI async REST API specialist
...
Usage: /copy-agent <plugin>:<agent-name> [--user | --project]
Parse arguments:
plugin and agent-name from <plugin>:<agent-name> format--user or --project (default)Locate source agent:
SOURCE=~/.claude/plugins/cache/product-forge-marketplace/{plugin}/agents/{agent-name}.md
Determine destination path:
--project: .claude/{plugin}/agents/{agent-name}.md--user: ~/.claude/{plugin}/agents/{agent-name}.mdCheck if destination exists:
Agent '{agent-name}' already exists at {destination}.
Options:
- Overwrite: Replace existing agent
- Rename: Save as {agent-name}-copy.md
- Cancel: Abort operation
Create destination directory structure:
mkdir -p {destination_dir}
Copy agent file:
cp {source} {destination}
Confirm success:
Agent copied successfully!
Source: ~/.claude/plugins/cache/product-forge-marketplace/{plugin}/agents/{agent-name}.md
Destination: {destination}
The agent is now available in your {project|user} configuration.