gitextract_x47lkrcx/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── maintainer/ │ │ ├── config.json │ │ ├── context.md │ │ ├── contributors.md │ │ ├── decisions.md │ │ ├── index/ │ │ │ ├── graph.json │ │ │ └── items.json │ │ ├── notes/ │ │ │ ├── issues/ │ │ │ │ └── 000/ │ │ │ │ ├── ISSUE-13.md │ │ │ │ ├── ISSUE-16.md │ │ │ │ ├── ISSUE-17.md │ │ │ │ ├── ISSUE-19.md │ │ │ │ ├── ISSUE-20.md │ │ │ │ ├── ISSUE-24.md │ │ │ │ ├── ISSUE-28.md │ │ │ │ ├── ISSUE-29.md │ │ │ │ ├── ISSUE-32.md │ │ │ │ ├── ISSUE-34.md │ │ │ │ ├── ISSUE-35.md │ │ │ │ ├── ISSUE-41.md │ │ │ │ ├── ISSUE-42.md │ │ │ │ ├── ISSUE-43.md │ │ │ │ ├── ISSUE-47.md │ │ │ │ ├── ISSUE-48.md │ │ │ │ ├── ISSUE-50.md │ │ │ │ ├── ISSUE-51.md │ │ │ │ ├── ISSUE-6.md │ │ │ │ └── ISSUE-9.md │ │ │ └── prs/ │ │ │ └── 000/ │ │ │ ├── PR-18.md │ │ │ ├── PR-23.md │ │ │ ├── PR-25.md │ │ │ ├── PR-26.md │ │ │ ├── PR-27.md │ │ │ ├── PR-30.md │ │ │ ├── PR-31.md │ │ │ ├── PR-37.md │ │ │ ├── PR-38.md │ │ │ ├── PR-39.md │ │ │ ├── PR-40.md │ │ │ └── PR-49.md │ │ ├── patterns.md │ │ ├── release-checklist.md │ │ ├── runs.md │ │ ├── semantics.generated.json │ │ ├── standing-rules.md │ │ ├── state.json │ │ └── work/ │ │ ├── agent-briefs.md │ │ ├── agent-prompts.md │ │ ├── opportunities.md │ │ └── queue.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .npmignore ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── examples/ │ └── my-first-skill/ │ ├── SKILL.md │ └── references/ │ └── skill-format.md ├── package.json ├── src/ │ ├── cli.ts │ ├── commands/ │ │ ├── install.ts │ │ ├── list.ts │ │ ├── manage.ts │ │ ├── read.ts │ │ ├── remove.ts │ │ ├── sync.ts │ │ └── update.ts │ ├── types.ts │ └── utils/ │ ├── agents-md.ts │ ├── dirs.ts │ ├── marketplace-skills.ts │ ├── skill-metadata.ts │ ├── skill-names.ts │ ├── skills.ts │ └── yaml.ts ├── tests/ │ ├── commands/ │ │ ├── install.test.ts │ │ ├── sync.test.ts │ │ └── update.test.ts │ ├── integration/ │ │ └── e2e.test.ts │ └── utils/ │ ├── dirs.test.ts │ ├── skill-metadata.test.ts │ ├── skill-names.test.ts │ ├── skills.test.ts │ └── yaml.test.ts ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts