Claude Code Plugins

Community-maintained marketplace

Feedback

careercopilot-agent-scaffolder

@okgoogle13/careercopilot
1
0

Scaffolds a new Python agent file in 'src/agents/' from a template. Use when asked to create a new agent.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name careercopilot-agent-scaffolder
description Scaffolds a new Python agent file in 'src/agents/' from a template. Use when asked to create a new agent.

Agent Scaffolder Workflow

  1. Ask the user for the new agent's name (e.g., resume_analyzer_agent).
  2. Read the template: cat .claude/skills/careercopilot-agent-scaffolder/templates/agent.py.tpl
  3. Replace the {{AGENT_NAME}} placeholder with the user's provided name (e.g., resume_analyzer_agent).
  4. Write the new file to src/agents/{{AGENT_NAME}}.py.
  5. Report success and show the path to the new file.