// Primary instruction manual for working within the ancplua-claude-plugins monorepo. Use when creating, modifying, or debugging plugins in this repository.
| name | working-on-ancplua-plugins |
| description | Primary instruction manual for working within the ancplua-claude-plugins monorepo. Use when creating, modifying, or debugging plugins in this repository. |
This is the primary instruction manual for an agent working within the
ancplua-claude-plugins monorepo. It defines the mandatory conventions, architectural patterns,
and workflows required to contribute safely and effectively.
Use this skill when:
publishing.md guide to scaffold correctly.conventions.md to ensure you don't break architecture.testing.md to verify JSON syntax, permissions, and paths.testing.md.| Resource | Description |
|---|---|
| Conventions | Critical rules, naming, directory layout, Git flow |
| Publishing | Step-by-step guide to create and release plugins |
| Testing | Validation commands and debugging steps |
| Topic | Link |
|---|---|
| Plugins | code.claude.com/docs/en/plugins |
| Skills | code.claude.com/docs/en/skills |
| Hooks | code.claude.com/docs/en/hooks |
| Marketplaces | code.claude.com/docs/en/plugin-marketplaces |
Validate everything:
./tooling/scripts/local-validate.sh
Check marketplace sync:
./tooling/scripts/sync-marketplace.sh
Validate single plugin:
claude plugin validate plugins/<plugin-name>
ancplua-claude-plugins/
โโโ plugins/ # Individual plugins live here
โ โโโ <plugin-name>/
โ โโโ .claude-plugin/plugin.json
โ โโโ skills/
โ โโโ commands/
โ โโโ agents/
โ โโโ hooks/
โ โโโ README.md
โโโ agents/ # Repo-level Agent SDK experiments
โโโ skills/ # Repo-level shared skills (like this one)
โโโ .claude-plugin/ # Marketplace manifest
โโโ tooling/ # Validation scripts, templates
โโโ docs/ # Architecture, specs, ADRs