Skip to content
Closed
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
6 changes: 4 additions & 2 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,17 @@
"exclude": [
"packages/commands/agnostic/*",
"packages/agents/agnostic/*",
"packages/commands/typescript/*"
"packages/commands/typescript/*",
"packages/skills/agnostic/*"
]
},
{
"plugin": "@nx/js/typescript",
"include": [
"packages/commands/agnostic/*",
"packages/agents/agnostic/*",
"packages/commands/typescript/*"
"packages/commands/typescript/*",
"packages/skills/agnostic/*"
],
"options": {
"typecheck": {
Expand Down
10 changes: 10 additions & 0 deletions packages/ai-toolkit-nx-claude/generators.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@
"schema": "./dist/generators/add-agent/schema.json",
"description": "Add a new Claude Code agent to existing or new packages"
},
"add-skill": {
"factory": "./dist/generators/add-skill/generator",
"schema": "./dist/generators/add-skill/schema.json",
"description": "Add a new Claude Code skill compatible with the plugin system"
},
"init-plugin": {
"factory": "./dist/generators/init-plugin/generator",
"schema": "./dist/generators/init-plugin/schema.json",
"description": "Initialize a Claude Code plugin structure for distributing skills, commands, and agents"
},
"hooks": {
"factory": "./dist/generators/hooks/generator",
"schema": "./dist/generators/hooks/schema.json",
Expand Down
2 changes: 2 additions & 0 deletions packages/ai-toolkit-nx-claude/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@
"packages/ai-toolkit-nx-claude/src/scripts/claude-plus/index.ts",
"packages/ai-toolkit-nx-claude/src/generators/add-agent/generator.ts",
"packages/ai-toolkit-nx-claude/src/generators/add-command/generator.ts",
"packages/ai-toolkit-nx-claude/src/generators/add-skill/generator.ts",
"packages/ai-toolkit-nx-claude/src/generators/addons/generator.ts",
"packages/ai-toolkit-nx-claude/src/generators/hooks/generator.ts",
"packages/ai-toolkit-nx-claude/src/generators/init-plugin/generator.ts",
"packages/ai-toolkit-nx-claude/src/generators/init/generator.ts"
],
"tsConfig": "packages/ai-toolkit-nx-claude/tsconfig.lib.json",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
name: <%= name %>
description: <%= description %>
<% if (allowedTools) { %>allowed-tools: <%= allowedTools %>
<% } %>---

# <%= name.split('-').map(w => w.charAt(0).toUpperCase() + w.slice(1)).join(' ') %> Skill

<!-- TODO: Add detailed instructions for this skill -->

## When to Use

Activate this skill when:

- <!-- TODO: Describe trigger conditions -->
- <!-- TODO: Add more conditions -->

## Instructions

<!-- TODO: Add step-by-step guidance for Claude -->

### Step 1: [First Action]

<!-- TODO: Describe the first step -->

### Step 2: [Second Action]

<!-- TODO: Describe the second step -->

## Output Format

<!-- TODO: Describe expected output format -->

```markdown
## Summary
[Summary of findings/actions]

## Details
[Detailed information]
```

## Best Practices

- <!-- TODO: Add best practices -->
- <!-- TODO: Add more guidelines -->
Loading
Loading