@openreachtech/ai-agent-skills
v0.2.0
Published
A shared library of Claude Code skills, rules, and CLAUDE.md templates for Open Reach Tech projects.
Downloads
95
Readme
@openreachtech/ai-agent-skills
A shared library of Claude Code skills, rules, and CLAUDE.md templates for Open Reach Tech projects, distributed as pre-built, ready-to-copy content under dist/.
Concept
This repository maintains three kinds of content, organized by domain (_core, backend, frontend):
- Skills (
dist/skills/) — model-invoked procedures, one flat directory per skill (SKILL.md+ optionalreferences/,scripts/,templates/). - Rules (
dist/rules/) — always-on or path-scoped conventions, auto-loaded by Claude Code. - Share (
dist/share/) — per-domainCLAUDE.mdtemplates that a consuming repository copies to its root and fills in.
dist/ is generated from the source under lib/ by this repository's flatten build. Each skill lives at lib/skills/<domain>/<name>/, and that folder name is both the skill's name: and the name it installs as — the two-character prefix (hc-, hb-, hf-) says which domain it came from. See the flatten build convention for the layout and the naming rules.
Skill catalog (日本語) — every skill in this repository with a one- or two-line summary, listed by the command name it is invoked by.
Installation
Requires Node.js 20.x (the version the CI builds against).
npm install @openreachtech/ai-agent-skillsThis package has no JavaScript entry point — it ships static content only, meant to be copied into your own project (see Usage below), not imported.
Usage
npm install places the built content under node_modules/@openreachtech/ai-agent-skills/dist/. Copy what you need into your repository.
Skills → .claude/skills/
dist/skills/ is already flat — copy its contents directly:
cp -r node_modules/@openreachtech/ai-agent-skills/dist/skills/* .claude/skills/Rules → .claude/rules/
dist/rules/ mirrors its source layout (e.g. frontend/architecture.md) — copy it directly:
cp -r node_modules/@openreachtech/ai-agent-skills/dist/rules/* .claude/rules/Shared CLAUDE.md templates → project root
dist/share/<domain>/CLAUDE.md is a template per domain (frontend, backend). Copy the one matching your project and fill in its placeholders and project-specific sections:
cp node_modules/@openreachtech/ai-agent-skills/dist/share/frontend/CLAUDE.md ./CLAUDE.mdContribution
Bug reports, feature requests, and code contributions are welcome.
Feel free to contact us through GitHub Issues.
git clone https://github.com/openreachtech/ai-agent-skills.git
cd ai-agent-skills
npm install
npm run lint
npm testLicense
This project is released under the Apache License 2.0.
For more details, please see in the LICENSE file.
Developer
Copyright
© 2026 Open Reach Tech Inc.
