Add agent template
Skill alexmmatos/essentials-claude-code/.claude/skills/add-agent-template
Measure Claude Code Adoption
npx -y skills add alexmmatos/essentials-claude-code --skill add-agent-templateAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Adds a new subagent template to the catalog used by --generate-all-agents and --generate-essential-agents
SKILL.md
1.5 KB, 334 tokens by cl100k_base, as published. Nobody here has run it
Add a new subagent template called "$ARGUMENTS" to essentials-claude-code's template catalog:
- Create the template file under
template-agents/awesome-claude-code-subagents-main/categories/<category>/<template-name>.md, following the frontmatter shape of existing templates in that directory (name,description,tools). - Register it in
src/agentTemplateCatalog.json: add an entry{ "name": "<template-name>", "path": "template-agents/.../<template-name>.md" }to the matchingcategories[].agentsarray (create the category block if it doesn't exist yet), and bumptotalAgents. - Add relevance terms for it in
src/agentTermTemplateRelevance.json: pick file names, manifest keys, or keywords that signal this template is a good fit for a project, and add{ "template": "<template-name>", "relevance": N }entries under each term (see existing entries for the expected relevance scale). - If the template should also be an "essential" pick for a specific
language, wire it into
LANGUAGE_AGENT_TEMPLATESorUNIVERSAL_AGENT_TEMPLATESinsrc/agentTemplates.js. - Run
node src/rankAgentRelevance.jsornode bin/cli.js --generate-all-agents /tmp/some-fixtureagainst a throwaway fixture to confirm the new template surfaces with a positive score for the terms you added.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.