🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

agenthood

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agenthood

A full AI engineering team as plain Markdown files. 14 specialized agents for code quality, commits, reviews, security, and more — works with any agent runtime.

latest
Source
npmnpm
Version
3.12.0
Version published
Maintainers
1
Created
Source

Agenthood

npm version npm downloads License: MIT Node.js skills.sh

A full AI engineering team as plain Markdown files.

Specialized AI agents — architect, reviewer, security expert, DevOps engineer, strategist, operator, and more — each a single Markdown skill file any agent runtime can load into any project. No lock-in. No configuration. Just drop them in.

They have opinions about your PR descriptions. They will not merge your branch if your commit says fix stuff. They are not polite about it.

The Oath

I commit with intention. I branch with purpose. I review with honesty. I ship with confidence. I never push to main.

How it works

Each agent is a single .md file that describes a role, its responsibilities, standards, and how it communicates. Load one or all of them into Claude Code, Copilot, or any runtime that supports skill files. Or run them autonomously via the TypeScript CLI.

  • Install the Societynpm install --save-dev agenthood && npx agenthood init (or npx skills add fworks-tech/agenthood via skills.sh)
  • Load into your runtime — point Claude Code, Copilot, or your agent framework at the skills directory
  • Invoke any agent — ask the Reviewer to check your PR, ask the Auditor to scan your auth flow. They know their role. They have standards.

Meet the team

Every role a real software team needs — available as a skill file with impeccable standards.

AgentRole
✍️The ScribeCommits, PRs, changelogs
🏗️The ArchitectSystem design, ADRs, tech decisions
🔍The ReviewerCode review, standards enforcement
🧪The TesterTDD, coverage, edge cases
🐛The DebuggerError triage, root cause analysis
🔒The AuditorSecurity, vulnerability scanning, dependency audit
📦The HeraldReleases, versioning, changelogs
📝The LibrarianDocumentation, API references
🚪The DoormanValidation, branch protection, health checks
🔮The OracleInstitutional knowledge, authoring templates
🌐The EnvoyCross-provider translation, convention validation
👁️The SentinelIntegrity, cross-member contradiction detection
⚖️The WardenCode health, complexity enforcement
🧭The StewardContext economy, provider cache strategies
🎯The StrategistGoal refinement, requirement discovery
🩺The OperatorRuntime health, deployments, rollback
👁️The InspectorVisual-reasoning benchmarking, pixel analysis
📬The MailmanMessage delivery, scheduling, cross-posting

Getting started

Option A — Drop into any AI runtime

npm install --save-dev agenthood
npx agenthood init       # interactive setup (~1 minute)
npx agenthood check      # verify everything is in place

Members are loaded as context by your existing AI assistant. Works with Claude Code and Copilot.

Option B — Run agents autonomously

Execute members as real LLM agents that reason, act, and remember across sessions.

# From the repo clone (when installed via npm, the runtime is pre-built)
npm run build                              # build the runtime (once)
npx agenthood list                          # see available agents
npx agenthood run the-scribe "write a commit message for the current diff"
npx agenthood run the-reviewer "review the changes in the last commit"
npx agenthood run the-architect "plan the implementation for issue #42"
npx agenthood verify                    # validate member SKILL.md integrity
npx agenthood status --watch            # live project health monitoring
npx agenthood rollback the-scribe       # restore SKILL.md from lockfile
npx agenthood workflow review-pr        # execute the review-pr workflow

Set one of these in a .env file in your project root (loaded automatically by the runtime):

VariableProviderFree tier
GROQ_API_KEYGroq (default)console.groq.com
ANTHROPIC_API_KEYAnthropic
OPENAI_API_KEYOpenAI
OPENCODE_API_KEYOpenCode / OpenCodeGoopencode.ai

Or use Ollama for fully offline execution (no key required).

For a full walkthrough — install, commands, CI pipeline, and next steps — see the Academy Getting Started guide.

What's shipped

Runtime (TypeScript CLI)

See the CHANGELOG.md for the full version history.

Playground (agenthood-site)

Agenthood Studio — a browser-based chat interface for all 16 Society members. Features configurable provider backend (Anthropic, OpenAI, Groq, Ollama, OpenCode), SSE streaming, turnstile CAPTCHA, session-scoped config persistence, Upstash Redis rate limiting, and structured logging with field-level redaction. Source

Compatibility

Agenthood is agent-agnostic. The skill files work with:

The TypeScript runtime (agenthood run) supports Groq (default, free tier at console.groq.com), Anthropic, OpenAI, OpenCode, and Ollama for fully offline execution.

The Agenthood Studio playground exercises the same runtime through a browser UI — every chat request runs through agenthood/dist/llm with provider routing, failover, and streaming.

Architecture

The framework runs on five core principles adapted from production AI agent systems. See the architecture docs for details on how agents coordinate, prioritize, fail over, and stay safe.

PrincipleDocument
Multi-agent orchestration & agent rolesagent-system.md
Priority queues & concurrency slotsconcurrency-and-queues.md
Agent mode vs Ask modeoperating-modes.md
Multi-LLM support & automatic failoverprovider-failover.md
Tool registry, scoping & safety capsbuilt-in-tools.md
Agent memory tiersmemory — ResidualMemory, ShortTermMemory, LongTermMemory, EpisodicMemory, ProjectMemory, DecisionLog, MetricsCollector, InMemoryStore, PersonalisationStore, LanceDBStore
Workflow engine & quality gatesworkflows — WorkflowEngine, QualityGates, DiffImpactAnalyzer, WorkflowCheckpoint, GoalChain
Service-agnostic RAG (graph, vector, agentic)rag — KnowledgeGraphStore, FixedSizeChunkStrategy + MarkdownHierarchicalChunkStrategy, Indexer, Retriever, AgenticRAG, TreeSitterParser, ProjectIngestion

For this repo

npm install && npm run build
make setup          # activates git hooks and commit template
npm test            # run all tests
npm run typecheck   # strict TypeScript check
npm run lint        # ESLint

Repository structure

See STRUCTURE.md for the full directory tree.

Academy

Structured learning path from "what is a prompt?" to "ship agents to production."

References

Open source. No sign-up. Works with any agent runtime. Membership is free. Standards are not.

Keywords

ai-agents

FAQs

Package last updated on 09 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts