This repository contains configuration and tooling for the Opencode and Claude Code AI agents. It defines the project layout, skills, agents, commands and plugins used to orchestrate AI‑powered development workflows.
The package is intended for production‑grade automation: version control, CI/CD, and collaboration across development teams. Extend the configuration as needed for your ecosystem.
- Shared layout & conventions —
AGENTS.mdis the single source of truth, inherited (not copied) by consuming projects. - Triple-mirror model — every subagent / skill / command / rule is mirrored across
.opencode/,.claude/, and.agents/so it works in opencode, Claude Code, and any Agent-Skills-compatible client (see ADR 0001). - AI-Driven SDLC framework —
sdlc-regulatoryskill + 10sdlc-*subagents +sdlc-gatesrule +/sdlccommand. Gates run in order (requirement → architecture → implementation → testing → security → review → deployment → DoD), AI never self-validates, high-risk changes require human approval, and a compliance crosswalk covers EU AI Act / NIST AI RMF / ISO 42001 / SOC 2 / GDPR. - Domain skills —
senior-qa,senior-solidity-auditor,senior-bitcoin-auditor,senior-frontend-dev,senior-software-developer,senior-ux-ui-designer,archivarius,data-engineer,find-skills,frontend-design. - Always-on rules —
programming-best-practicesandsdlc-gates. - AI-readable contract —
ARCHITECTURE.md,CONTRIBUTING.md,SECURITY.md,docs/(business logic, implementation status, ADRs).
Install as a dev dependency (this package configures local development tooling):
# npm / yarn / pnpm / bun
npm install --save-dev @daochild/agents-config
yarn add --dev @daochild/agents-config
pnpm add --save-dev @daochild/agents-config
bun add --dev @daochild/agents-configAfter npm install, this package's postinstall script automatically writes a
single pointer line into your project's AGENTS.md (if one exists), idempotently
and non-destructively. The script is deterministic (no network, no telemetry),
scoped to your project root (cwd), never overwrites existing content, and
always exits 0 so it can never break your install. It only writes when
@daochild/agents-config is a direct dependency in your package.json
(dependencies or devDependencies); transitive installs are left untouched.
The line it writes is:
Primary instructions: node_modules/@daochild/agents-config/AGENTS.md — read in full and follow unless overridden below.If your project has no AGENTS.md, the script prints a notice and exits 0
without creating one. To have it create a minimal AGENTS.md (a title line
followed by the pointer line), pass the explicit --init flag:
node node_modules/@daochild/agents-config/scripts/postinstall.js --initKnown limitation (monorepo / workspace): the script checks only the
package.json in the directory where the install is running (cwd); it does
not traverse parent or sibling workspace package.json files. In a monorepo
where the dependency is declared in a sub-workspace but the install cwd is the
workspace root (or vice versa), the automatic write may not fire. Use the manual
path below in that case.
If your CI policy rejects postinstall, you use --ignore-scripts, or the
automatic path does not apply (e.g. the monorepo limitation above), add this one
line at the top of your project's AGENTS.md, immediately after the title, so
the agent inherits this package as its primary instructions source:
Primary instructions: node_modules/@daochild/agents-config/AGENTS.md — read in full and follow unless overridden below.This manual path is the supported fallback and is runnable without the
postinstall ever having run.
Restart your agent session (opencode or Claude Code) so the new instructions take effect — config is loaded once at startup and is not hot-reloaded.
MIT