├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── 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 ├── types.ts └── utils │ ├── agents-md.ts │ ├── dirs.ts │ ├── marketplace-skills.ts │ ├── skills.ts │ └── yaml.ts ├── tests └── utils │ ├── dirs.test.ts │ └── yaml.test.ts ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .DS_Store 4 | *.log 5 | .openskills-temp/ 6 | .claude/ 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/.npmignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/my-first-skill/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/examples/my-first-skill/SKILL.md -------------------------------------------------------------------------------- /examples/my-first-skill/references/skill-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/examples/my-first-skill/references/skill-format.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/commands/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/commands/install.ts -------------------------------------------------------------------------------- /src/commands/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/commands/list.ts -------------------------------------------------------------------------------- /src/commands/manage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/commands/manage.ts -------------------------------------------------------------------------------- /src/commands/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/commands/read.ts -------------------------------------------------------------------------------- /src/commands/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/commands/remove.ts -------------------------------------------------------------------------------- /src/commands/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/commands/sync.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/agents-md.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/utils/agents-md.ts -------------------------------------------------------------------------------- /src/utils/dirs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/utils/dirs.ts -------------------------------------------------------------------------------- /src/utils/marketplace-skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/utils/marketplace-skills.ts -------------------------------------------------------------------------------- /src/utils/skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/utils/skills.ts -------------------------------------------------------------------------------- /src/utils/yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/src/utils/yaml.ts -------------------------------------------------------------------------------- /tests/utils/dirs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/tests/utils/dirs.test.ts -------------------------------------------------------------------------------- /tests/utils/yaml.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/tests/utils/yaml.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numman-ali/openskills/HEAD/vitest.config.ts --------------------------------------------------------------------------------