npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@daochild/agents-config

v1.2.1

Published

Shared, version-controlled configuration for AI coding agents (opencode and Claude Code): layout, skills, subagents, commands, rules, and an always-on AI-driven SDLC governance framework.

Downloads

656

Readme

AGENTS CONFIG

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.

What's in the box

  • Shared layout & conventionsAGENTS.md is 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 frameworksdlc-regulatory skill + 10 sdlc-* subagents + sdlc-gates rule + /sdlc command. 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 skillssenior-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 rulesprogramming-best-practices and sdlc-gates.
  • AI-readable contractARCHITECTURE.md, CONTRIBUTING.md, SECURITY.md, docs/ (business logic, implementation status, ADRs).

Installation

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-config

Automatic path (zero-edit)

After 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 --init

Known 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.

Manual path (supported fallback)

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.

After either path

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.

License

MIT