Skip to content
Open
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
10 changes: 2 additions & 8 deletions claude/plugin-tools/skills/bump-plugin-version/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
---
name: bump-plugin-version
description: Bumps plugin versions across the Agent Alchemy ecosystem
description: "Bumps plugin versions across the Agent Alchemy ecosystem by scanning 5 version locations per plugin, detecting drift, and applying consistent semver updates with changelog entries. Use when bumping plugin versions, updating marketplace versions, checking version drift, releasing plugin updates, or preparing a new plugin release."
user-invocable: true
disable-model-invocation: true
argument-hint: "[--plugin <group,...>] [--level patch|minor|major] [--dry-run]"
allowed-tools:
- Read
- Edit
- Glob
- Grep
- Bash
- AskUserQuestion
allowed-tools: Read, Edit, Glob, Grep, Bash, AskUserQuestion
---

# Bump Plugin Version
Expand Down
10 changes: 2 additions & 8 deletions claude/plugin-tools/skills/dependency-checker/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
---
name: dependency-checker
description: Analyzes the Agent Alchemy plugin ecosystem to detect dependency issues across all plugin groups
description: "Analyzes the Agent Alchemy plugin ecosystem to detect dependency issues, broken paths, orphaned components, circular dependencies, and documentation drift across all plugin groups. Use when checking plugin health, auditing dependencies, finding broken cross-plugin paths, detecting orphaned skills or agents, or generating an ecosystem health report."
user-invocable: true
disable-model-invocation: true
argument-hint: "[--plugin <group>] [--verbose] [--report-file <path>]"
allowed-tools:
- Read
- Write
- Glob
- Grep
- Bash
- AskUserQuestion
allowed-tools: Read, Write, Glob, Grep, Bash, AskUserQuestion
---

# Dependency Checker
Expand Down
12 changes: 2 additions & 10 deletions claude/plugin-tools/skills/update-ported-plugin/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
---
name: update-ported-plugin
description: Updates previously-ported plugins when source plugins change or the target platform evolves
description: "Applies incremental updates to previously-ported plugins by detecting source diffs and platform drift since the original port, then applying targeted changes without re-running the full port workflow. Use when source plugins have changed, the target platform has evolved, updating ported plugins, syncing ported code with upstream changes, or refreshing platform adapter mappings."
user-invocable: true
disable-model-invocation: true
argument-hint: "--target <platform> [--source-only] [--platform-only] [--output-dir <path>]"
allowed-tools:
- Read
- Write
- Edit
- Glob
- Grep
- Bash
- AskUserQuestion
- Task
allowed-tools: Read, Write, Edit, Glob, Grep, Bash, AskUserQuestion, Task
---

# Update Ported Plugin
Expand Down
12 changes: 2 additions & 10 deletions claude/plugin-tools/skills/validate-adapter/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
---
name: validate-adapter
description: Validates adapter files against live platform documentation to detect stale mappings,missing features, and outdated version information
description: "Validates adapter files against live platform documentation to detect stale mappings, missing features, and outdated version information across all 9 adapter sections. Use when validating platform adapters, checking adapter staleness, auditing adapter accuracy, updating adapter mappings, or verifying adapter health before a port operation."
user-invocable: true
disable-model-invocation: true
argument-hint: "--target <platform> [--update]"
allowed-tools:
- Read
- Write
- Edit
- Glob
- Grep
- Bash
- AskUserQuestion
- Task
allowed-tools: Read, Write, Edit, Glob, Grep, Bash, AskUserQuestion, Task
---

# Validate Adapter
Expand Down
18 changes: 2 additions & 16 deletions claude/tdd-tools/skills/execute-tdd-tasks/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,10 @@
---
name: execute-tdd-tasks
description: Execute TDD task pairs autonomously with RED-GREEN-REFACTOR verification. Orchestrates wave-based execution with strategic parallelism, routing TDD tasks to tdd-executor agents and non-TDD tasks to standard task-executor. Use when user says "execute tdd tasks", "run tdd tasks", "start tdd execution", or wants to execute TDD-paired tasks from create-tdd-tasks.
description: "Execute TDD task pairs autonomously with RED-GREEN-REFACTOR verification. Orchestrates wave-based execution with strategic parallelism, routing TDD tasks to tdd-executor agents and non-TDD tasks to standard task-executor. Use when user says \"execute tdd tasks\", \"run tdd tasks\", \"start tdd execution\", or wants to execute TDD-paired tasks from create-tdd-tasks."
argument-hint: "[--task-group <group>] [--max-parallel <n>] [--retries <n>]"
user-invocable: true
disable-model-invocation: false
allowed-tools:
- Read
- Write
- Edit
- Glob
- Grep
- Bash
- Task
- TaskOutput
- TaskStop
- AskUserQuestion
- TaskCreate
- TaskGet
- TaskList
- TaskUpdate
allowed-tools: Read, Write, Edit, Glob, Grep, Bash, Task, TaskOutput, TaskStop, AskUserQuestion, TaskCreate, TaskGet, TaskList, TaskUpdate
arguments:
- name: task-group
description: Optional task group name to filter tasks. Only tasks with matching metadata.task_group will be executed.
Expand Down