gitextract_zrmsvrzw/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ ├── config.yml │ │ └── skill-request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── validate.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CURATION.md ├── FOR_YOUR_AGENT.md ├── LICENSE ├── README.md ├── WORK_AREAS.md ├── atlas.html ├── cli.js ├── curator.html ├── lib/ │ ├── catalog-data.cjs │ ├── catalog-mutations.cjs │ ├── catalog-paths.cjs │ ├── dependency-graph.cjs │ ├── frontmatter.cjs │ ├── install-metadata.cjs │ ├── install-state.cjs │ ├── library-context.cjs │ ├── paths.cjs │ ├── render-docs.cjs │ ├── source.cjs │ └── workspace-import.cjs ├── package.json ├── scripts/ │ ├── render-docs.js │ ├── test-live.js │ ├── validate.js │ └── vendor.js ├── skills/ │ ├── ask-questions-if-underspecified/ │ │ └── SKILL.md │ ├── audit-library-health/ │ │ └── SKILL.md │ ├── backend-development/ │ │ └── SKILL.md │ ├── best-practices/ │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ ├── best-practices-referencer.md │ │ │ ├── codebase-context-builder.md │ │ │ └── task-intent-analyzer.md │ │ └── references/ │ │ ├── anti-patterns.md │ │ ├── before-after-examples.md │ │ ├── best-practices-guide.md │ │ ├── common-workflows.md │ │ └── prompt-patterns.md │ ├── browse-and-evaluate/ │ │ └── SKILL.md │ ├── build-workspace-docs/ │ │ └── SKILL.md │ ├── changelog-generator/ │ │ └── SKILL.md │ ├── code-documentation/ │ │ └── SKILL.md │ ├── content-research-writer/ │ │ └── SKILL.md │ ├── curate-a-team-library/ │ │ └── SKILL.md │ ├── database-design/ │ │ └── SKILL.md │ ├── install-from-remote-library/ │ │ └── SKILL.md │ ├── llm-application-dev/ │ │ └── SKILL.md │ ├── migrate-skills-between-libraries/ │ │ └── SKILL.md │ ├── review-a-skill/ │ │ └── SKILL.md │ ├── share-a-library/ │ │ └── SKILL.md │ └── update-installed-skills/ │ └── SKILL.md ├── skills.json ├── test.js └── tui/ ├── catalog.cjs └── index.mjs