Professional 4-step skill pack for building, modernizing, auditing, and releasing WordPress plugins with Antonella Framework.
01-scaffold-and-plan
Scaffold a new plugin, define architecture, and produceimplementation_plan.md.02-implement-features
Implement models, services, controllers, APIs, and UI from the plan.03-refactor-legacy
Migrate legacy/procedural plugins into Antonella MVC with configurable risk profile.04-audit-and-release
Run security/architecture QA, remediate issues, and package production ZIP artifacts.
All skills use these normative references:
normative/architecture_standards.mdnormative/security_standards.mdnormative/database_standards.mdnormative/deployment.mdnormative/oop_standards.mdnormative/placeholders.md
new_plugin:01-scaffold-and-plan->02-implement-features->04-audit-and-releaselegacy_refactor:03-refactor-legacy->04-audit-and-release
Antonella-Agent-Pack/
├── skill_pack.json
├── normative/
│ ├── architecture_standards.md
│ ├── security_standards.md
│ ├── database_standards.md
│ ├── deployment.md
│ ├── oop_standards.md
│ └── placeholders.md
└── skills/
├── 01-scaffold-and-plan/SKILL.md
├── 02-implement-features/SKILL.md
├── 03-refactor-legacy/SKILL.md
└── 04-audit-and-release/SKILL.md
Replace <owner> and <repo> with your GitHub repository path.
# List available skills from the repository
npx skills add https://github.com/<owner>/<repo> --list
# Install all skills
npx skills add https://github.com/<owner>/<repo> --skill "*" --yes
# Install only one skill
npx skills add https://github.com/<owner>/<repo> --skill 04-audit-and-release --yes-
Ensure the repository is public and contains valid
SKILL.mdfiles. -
Confirm each skill frontmatter has
nameanddescription. -
Keep skill names lowercase with hyphens for spec compatibility.
-
Run a local check before release:
npx skills add ./Antonella-Agent-Pack --list
-
Tag and push a release version after validation.
Current pack version: 2.0.0 (skill_pack.json)