HCC (Hermes Core Capabilities) is a one-click installable skill bundle for Hermes Agent, adapted from the ECC (Everything Claude Code) ecosystem. It provides 39 production-ready skills for agentic software engineering, security, deployment, and research β all built natively for Hermes Agent's architecture.
# Load core bundle (5 skills)
hermes chat -q '/hcc'
# Load full bundle (39 skills)
hermes chat -q '/hcc-full'
# Use individual skills
hermes chat -s agentic-engineering "Build a REST API with auth"
hermes chat -s security-review "Audit this code for vulnerabilities"
hermes chat -s deployment-patterns "Deploy Hermes with systemd"
hermes chat -s docker-patterns "Create hardened Dockerfile for FastAPI"
hermes chat -s git-workflow "Set up trunk-based development with worktrees"| Skill | Purpose |
|---|---|
agentic-engineering |
Core TDD loops, multi-agent coordination, self-improvement |
ai-first-engineering |
AI-first development workflows |
autonomous-loops |
Self-running agent loops |
continuous-agent-loop |
CI-integrated agent pipelines |
agent-eval |
Agent benchmarking & evaluation |
agent-architecture-audit |
Multi-agent system architecture review |
agent-harness-construction |
Test harness building for agents |
autonomous-agent-harness |
Full autonomous testing framework |
| Skill | Purpose |
|---|---|
deployment-patterns |
systemd, Docker, K8s, CI/CD, blue-green |
docker-patterns |
Multi-stage builds, security hardening, compose |
git-workflow |
Trunk-based dev, worktrees, conventional commits |
architecture-decision-records |
ADR templates & process |
codebase-onboarding |
Rapid codebase understanding |
deep-research |
Research methodology |
cost-aware-llm-pipeline |
LLM cost optimization |
| Skill | Purpose |
|---|---|
search-first |
Search-before-code security methodology |
safety-guard |
Dangerous command prevention |
security-review |
SAST, secrets, threat modeling, checklists |
security-scan |
Automated vulnerability scanning |
security-bounty-hunter |
Bug bounty methodology |
hipaa-compliance |
HIPAA compliance patterns |
| Skill | Purpose |
|---|---|
context-budget |
Context/token budget management |
token-budget-advisor |
Token optimization recommendations |
prompt-optimizer |
Prompt engineering best practices |
rules-distill |
Rule extraction from codebases |
product-lens |
Product-focused development |
blueprint |
Spec-driven development |
| Skill | Purpose |
|---|---|
iterative-retrieval |
Deep research loops |
research-ops |
Research workflow automation |
benchmark-methodology |
Benchmarking standards |
benchmark-optimization-loop |
Optimization cycles |
eval-harness |
Model/agent evaluation |
| Skill | Purpose |
|---|---|
coding-standards |
Code quality enforcement |
codehealth-mcp |
Code health via MCP |
error-handling |
Error handling patterns |
verification-loop |
Verify-after-change |
backend-patterns |
Backend architecture |
api-design |
API design patterns |
database-migrations |
Migration best practices |
The bundle is already installed in your Hermes skills directory at:
~/.hermes/skills/hcc-bundle/
Two skill bundles are available:
/hccβ 5 core skills (agentic-engineering, security-review, deployment-patterns, docker-patterns, git-workflow)/hcc-fullβ All 39 skills
hermes -s tdd "Add password reset endpoint with JWT tokens"# Terminal 1: Backend
git worktree add ../wt-backend feat/api
cd ../wt-backend
hermes -w -s agentic-engineering "Build user authentication API"
# Terminal 2: Frontend
git worktree add ../wt-frontend feat/ui
cd ../wt-frontend
hermes -w -s agentic-engineering "Build login/register UI"
# Terminal 3: Coordinator
hermes -s agentic-engineering "Coordinate backend + frontend auth integration"hermes -s security-review "Audit this PR for:
1. Hardcoded secrets
2. SQL injection vectors
3. AuthZ bypasses
4. Dependency vulnerabilities
5. Error info leakage"hermes -s deployment-patterns "Deploy Hermes gateway with:
- systemd service
- Docker Compose for dev
- K8s deployment for prod
- Blue-green rollout
- Health checks & monitoring"hermes -s docker-patterns "Create production Dockerfile for FastAPI app:
- Multi-stage build
- Non-root user
- Read-only filesystem
- Dropped capabilities
- Distroless base
- Health checks"hermes -s git-workflow "Set up:
- Trunk-based development
- Worktree coordination for agents
- Conventional commits
- Pre-push hooks (tests, security, lint)
- Auto-sync with main
- Release tagging"my-project/
βββ .hermes/ # Hermes config, skills, coordination.md, memory/
βββ specs/ # Feature specs (markdown)
β βββ 001-auth-api.md
β βββ 002-user-profile.md
βββ src/
β βββ domain/ # Pure business logic
β βββ application/ # Use cases, services
β βββ infrastructure/ # DB, external APIs
β βββ presentation/ # API, CLI, UI
βββ tests/
β βββ unit/
β βββ integration/
β βββ contract/ # API contract tests
βββ skills/ # Shared skills (git submodule?)
βββ CLAUDE.md # Project instructions for agents
βββ Makefile # Common commands
βββ pyproject.toml
All skills pass Hermes' skills-guard security scanner:
- β No persistence violations (no CLAUDE.md modification instructions)
- β No privilege escalation (no sudo, chmod 777)
- β No supply chain risks (no unpinned npm/pip/uv installs)
- β No network binding to all interfaces without consent
- β No hardcoded IPs/ports
- β No git config --global modifications
Skills are designed to compose:
# Security-first feature development
hermes -s agentic-engineering,security-review,git-workflow "Build payment integration"
# Full production pipeline
hermes -s agentic-engineering,deployment-patterns,docker-patterns,security-review "Deploy to prod"
# Research-driven development
hermes -s deep-research,agentic-engineering,eval-harness "Evaluate RAG approaches"Each skill includes:
- Prerequisites β Required toolsets & setup
- Core Patterns β Ready-to-use workflows
- Hermes Integration β Toolset mappings, delegation patterns
- Quick Commands β Copy-paste terminal commands
- Anti-Patterns β What to avoid
- Skill Composition β Related skills
- Fork the repo
- Create a skill in a new subdirectory
- Follow the skill template (see existing skills)
- Ensure security scanner passes
- Submit PR with conventional commit
MIT License β see LICENSE
Adapted from ECC (Everything Claude Code) by affaan-m for Hermes Agent by Nous Research.
HCC skills are rebuilt for Hermes' native architecture: toolsets, delegation, worktrees, cron, MCP, and the security model.