Profile craft
Skill codegraphtheory/hermes-profile-template/skills/profile-craft
Prompt-to-repo authoring system with one-sentence generation, demo assets, diagrams, and installable Hermes Agent profile distributions.
npx -y skills add codegraphtheory/hermes-profile-template --skill profile-craftAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Design and validate Hermes Agent profile distributions, including SOUL.md, distribution.yaml, skills, config, MCP stubs, and release readiness.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.9 KB, as published. Nobody here has run it
Profile Craft
Use this skill when creating or improving a Hermes Agent profile distribution. The default deliverable is a repository directory that can be validated and installed with hermes profile install, not just a written plan.
Inputs
- Target user or team.
- Primary job to be done.
- Required tools and integrations.
- Risk level and data sensitivity.
- Expected output style.
Workflow
Prompt-to-repo workflow
When a user asks for a new profile from a prompt:
- If the prompt is only a simple sentence, expand it into a mature profile prompt with
skills/prompt-engineering/SKILL.mdbefore generating files. - Ask only for missing essentials: profile name, mission, target user, required integrations, data sensitivity, risk level, and output style.
- If enough information is present, proceed with sensible defaults and state assumptions.
- Write a params YAML file using
templates/profile.params.yamlas the schema reference. Include the mature prompt inprofile_promptso the generated repo can preserve it indocs/profile-prompt.md. - Run
python3 scripts/generate_profile.py --params <params.yaml> --output <target-dir>. - Run
python3 <target-dir>/scripts/validate_profile.py <target-dir>. - If Hermes is available, run
hermes profile install <target-dir> --name <smoke-name> --yes --force. - Report mature prompt path, generated repo path, validation output, smoke-install output if run, and next publish command.
Profile design workflow
- Define the profile mission in one sentence.
- Define boundaries: what the profile does, does not do, and refuses.
- Draft
SOUL.mdwith first principles and output contract. - Add or refine
distribution.yaml. - Keep
config.yamlminimal and safe. - Add only skills that are directly needed.
- Add
.env.EXAMPLEfor env vars, but never real secrets. - For deterministic starter creation, edit a params YAML file and run
python3 scripts/generate_profile.py --params <params.yaml> --output <target-dir>. - Run
python3 scripts/validate_profile.py .. - Test local install with
hermes profile install . --name <smoke-name> --yeswhen Hermes is available. - Update README with install, usage, validation, and catalog contribution instructions.
- If the profile should be discoverable in profile catalogs, create small catalog-native entries using
templates/catalog/. Match the target repo format instead of pasting a generic link. - Before any public push, scan staged files, latest commit metadata, PR body text, and added diff lines for private identity strings, secrets, and project-specific style constraints.
Quality checklist
- The profile has a single clear purpose.
- Every required env var is documented.
- Skills are procedural and reusable.
- No runtime state is committed.
- Validation passes.
- Generator output validates from a temporary directory.
- Local
hermes profile install . --name <smoke-name> --yessucceeds when Hermes is available. - The README explains install, usage, validation, and risks.
- Public repository topics cover framework, domain, and installability keywords.
Pitfalls
- Overloading one profile with too many roles.
- Copying secrets into examples.
- Adding MCP servers that require private local paths.
- Forgetting to bump
distribution.yamlversion. - Claiming capabilities that the profile config does not enable.
- Using curly-brace template tokens outside
templates/; validators treat those as unresolved. Use[question]style markers in skill references. - Opening profile catalog PRs that only add a link. Add a catalog-native profile file or manifest entry when the target repo expects one.