Agent Skills: careercopilot-tool-creator

Scaffolds a new Python tool utility in 'src/tools/' for agents to call.

UncategorizedID: okgoogle13/careercopilot/careercopilot-tool-creator

Install this agent skill to your local

pnpm dlx add-skill https://github.com/okgoogle13/careercopilot/tree/HEAD/.claude/skills/careercopilot-tool-creator

Skill Files

Browse the full folder contents for careercopilot-tool-creator.

Download Skill

Loading file tree…

.claude/skills/careercopilot-tool-creator/SKILL.md

Skill Metadata

Name
careercopilot-tool-creator
Description
Scaffolds a new Python tool utility in 'src/tools/' for agents to call.

Purpose

Scaffolds new Python utility tools in src/tools/ for agents to use for specialized tasks like web scraping or database queries.

When to Use

  • When needing a new modular utility function for AI agents.
  • When expanding the toolset of the CareerCopilot ecosystem.

Process

  1. Input: Ask for the tool's file name.
  2. Template: Read the standard tool template from templates/tool.py.tpl.
  3. Injection: Replace placeholders (e.g., {{TOOL_NAME}}) with metadata.
  4. Creation: Write the new tool to src/tools/.
  5. Integration: Advise the user on adding the tool to __init__.py and agent files.