Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,24 @@ composer require netresearch/cli-tools-skill
```

Requires [netresearch/composer-agent-skill-plugin](https://github.com/netresearch/composer-agent-skill-plugin).
### npm (Node Projects)

```bash
npm install --save-dev \
@netresearch/agent-skill-coordinator \
github:netresearch/cli-tools-skill
```

Requires [@netresearch/agent-skill-coordinator](https://github.com/netresearch/node-agent-skill-coordinator), which discovers the skill in `node_modules` and registers it in `AGENTS.md` via a `postinstall` hook. For pnpm, also allowlist the coordinator's postinstall:

```json
{
"pnpm": {
"onlyBuiltDependencies": ["@netresearch/agent-skill-coordinator"]
}
}
```

## Triggers

The skill activates automatically on:
Expand Down
38 changes: 38 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "@netresearch/cli-tools-skill",
"version": "0.0.0-source",
"description": "Netresearch AI skill for CLI tool management, auto-installation and environment setup.",
"license": "(MIT AND CC-BY-SA-4.0)",
"author": "Netresearch DTT GmbH (https://www.netresearch.de/)",
"homepage": "https://github.com/netresearch/cli-tools-skill",
"repository": {
"type": "git",
"url": "git+https://github.com/netresearch/cli-tools-skill.git"
},
"bugs": {
"url": "https://github.com/netresearch/cli-tools-skill/issues"
},
"keywords": [
"ai-agent-skill",
"cli-tools",
"ripgrep",
"fd",
"jq",
"command-not-found",
"anthropic",
"claude-code"
],
"aiAgentSkill": "skills/cli-tools/SKILL.md",
"files": [
"skills/cli-tools/",
"catalog/",
"hooks/",
"scripts/",
Comment thread
CybotTM marked this conversation as resolved.
"LICENSE-MIT",
"LICENSE-CC-BY-SA-4.0",
"README.md"
],
Comment thread
CybotTM marked this conversation as resolved.
"peerDependencies": {
"@netresearch/agent-skill-coordinator": "^0.1"
}
}
Loading