返回 Skill 列表
extension
分类: 开发与工程无需 API Key

careercopilot-tool-creator

在'src/tools/'中为代理调用构建一个新的Python工具实用程序。这些工具是代理使用的实用函数(如网络爬取、PDF解析、数据库查询)。在创建代理依赖的实用程序时使用。

person作者: jakexiaohubgithub

Tool Creator Workflow

  1. Ask for the tool's file name (e.g., web_search_tool).
  2. Read the template: cat .claude/skills/careercopilot-tool-creator/templates/tool.py.tpl
  3. Replace placeholders like {{TOOL_NAME}} with the file name.
  4. Write the new file to src/tools/{{TOOL_NAME}}.py.
  5. Advise the user to now add the tool to src/tools/__init__.py and to the agent file.