myaidev-method 0.2.24-1 → 0.2.24-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/.claude-plugin/plugin.json +251 -0
  2. package/PLUGIN_ARCHITECTURE.md +276 -0
  3. package/README.md +204 -0
  4. package/USER_GUIDE.md +436 -9
  5. package/bin/cli.js +152 -0
  6. package/extension.json +174 -0
  7. package/hooks/hooks.json +221 -0
  8. package/marketplace.json +179 -0
  9. package/package.json +15 -3
  10. package/skills/content-verifier/SKILL.md +178 -0
  11. package/skills/content-writer/SKILL.md +151 -0
  12. package/skills/coolify-deployer/SKILL.md +207 -0
  13. package/skills/openstack-manager/SKILL.md +213 -0
  14. package/skills/security-auditor/SKILL.md +180 -0
  15. package/skills/security-tester/SKILL.md +171 -0
  16. package/skills/sparc-architect/SKILL.md +146 -0
  17. package/skills/sparc-coder/SKILL.md +136 -0
  18. package/skills/sparc-documenter/SKILL.md +195 -0
  19. package/skills/sparc-reviewer/SKILL.md +179 -0
  20. package/skills/sparc-tester/SKILL.md +156 -0
  21. package/skills/visual-generator/SKILL.md +147 -0
  22. package/skills/wordpress-publisher/SKILL.md +150 -0
  23. package/src/lib/content-coordinator.js +2562 -0
  24. package/src/lib/installation-detector.js +266 -0
  25. package/src/lib/visual-config-utils.js +1 -1
  26. package/src/lib/visual-generation-utils.js +34 -14
  27. package/src/scripts/generate-visual-cli.js +39 -10
  28. package/src/scripts/ping.js +0 -1
  29. package/src/templates/claude/agents/content-production-coordinator.md +689 -15
  30. package/src/templates/claude/commands/myai-content-enrichment.md +227 -0
  31. package/src/templates/claude/commands/myai-content-writer.md +48 -37
  32. package/src/templates/claude/commands/myai-coordinate-content.md +347 -11
package/extension.json ADDED
@@ -0,0 +1,174 @@
1
+ {
2
+ "name": "myaidev-method",
3
+ "version": "1.0.0",
4
+ "description": "Comprehensive AI development framework with SPARC methodology, content creation, multi-platform publishing, visual generation, security testing, and infrastructure management",
5
+ "author": {
6
+ "name": "Samuel Mukoti",
7
+ "email": "samuelm@openmy.ai",
8
+ "url": "https://github.com/myaione"
9
+ },
10
+ "homepage": "https://dev.myai1.ai/plugins/myaidev-method",
11
+ "repository": "https://github.com/myaione/myaidev-method",
12
+ "license": "MIT",
13
+ "platforms": {
14
+ "claudeCode": {
15
+ "minVersion": "1.0.0",
16
+ "path": "./",
17
+ "installCommand": "/plugin install myaidev-method",
18
+ "configFile": ".claude-plugin/plugin.json",
19
+ "commandFormat": "markdown",
20
+ "features": [
21
+ "skills",
22
+ "commands",
23
+ "agents",
24
+ "mcpServers",
25
+ "hooks"
26
+ ]
27
+ },
28
+ "geminiCli": {
29
+ "minVersion": "1.0.0",
30
+ "path": "./platforms/gemini",
31
+ "installCommand": "gemini extensions install myaidev-method",
32
+ "configFile": "gemini-extension.json",
33
+ "commandFormat": "toml",
34
+ "features": [
35
+ "skills",
36
+ "commands"
37
+ ],
38
+ "notes": "MCP servers require additional configuration"
39
+ },
40
+ "codexCli": {
41
+ "minVersion": "1.0.0",
42
+ "path": "./platforms/codex",
43
+ "installCommand": "codex extensions install myaidev-method",
44
+ "configFile": "codex-extension.json",
45
+ "commandFormat": "markdown",
46
+ "features": [
47
+ "skills",
48
+ "commands"
49
+ ],
50
+ "notes": "Some features may have limited support"
51
+ }
52
+ },
53
+ "capabilities": [
54
+ {
55
+ "id": "content-creation",
56
+ "name": "Content Creation",
57
+ "description": "SEO-optimized content writing with AI visual generation",
58
+ "skills": ["content-writer", "visual-generator", "content-verifier"],
59
+ "platforms": ["claudeCode", "geminiCli", "codexCli"]
60
+ },
61
+ {
62
+ "id": "sparc-development",
63
+ "name": "SPARC Development",
64
+ "description": "Specification-Pseudocode-Architecture-Refinement-Completion methodology",
65
+ "skills": ["sparc-architect", "sparc-coder", "sparc-tester", "sparc-reviewer", "sparc-documenter"],
66
+ "platforms": ["claudeCode", "geminiCli", "codexCli"]
67
+ },
68
+ {
69
+ "id": "multi-platform-publishing",
70
+ "name": "Multi-Platform Publishing",
71
+ "description": "Publish to WordPress, PayloadCMS, Docusaurus, Mintlify, Astro",
72
+ "skills": ["wordpress-publisher"],
73
+ "platforms": ["claudeCode", "geminiCli", "codexCli"]
74
+ },
75
+ {
76
+ "id": "security-testing",
77
+ "name": "Security Testing",
78
+ "description": "Penetration testing and security auditing following PTES/OWASP",
79
+ "skills": ["security-tester", "security-auditor"],
80
+ "platforms": ["claudeCode", "geminiCli", "codexCli"]
81
+ },
82
+ {
83
+ "id": "deployment",
84
+ "name": "Deployment Automation",
85
+ "description": "Deploy to Coolify PaaS and cloud infrastructure",
86
+ "skills": ["coolify-deployer"],
87
+ "platforms": ["claudeCode", "geminiCli", "codexCli"]
88
+ },
89
+ {
90
+ "id": "openstack-management",
91
+ "name": "OpenStack Management",
92
+ "description": "Manage OpenStack VMs and infrastructure",
93
+ "skills": ["openstack-manager"],
94
+ "platforms": ["claudeCode"]
95
+ }
96
+ ],
97
+ "skillPacks": {
98
+ "content": {
99
+ "name": "Content Pack",
100
+ "description": "Content creation and publishing",
101
+ "skills": ["content-writer", "content-verifier", "visual-generator", "wordpress-publisher"]
102
+ },
103
+ "development": {
104
+ "name": "Development Pack",
105
+ "description": "SPARC methodology for software development",
106
+ "skills": ["sparc-architect", "sparc-coder", "sparc-tester", "sparc-reviewer", "sparc-documenter"]
107
+ },
108
+ "security": {
109
+ "name": "Security Pack",
110
+ "description": "Security testing and auditing",
111
+ "skills": ["security-tester", "security-auditor"]
112
+ },
113
+ "infrastructure": {
114
+ "name": "Infrastructure Pack",
115
+ "description": "Deployment and infrastructure management",
116
+ "skills": ["coolify-deployer", "openstack-manager"]
117
+ },
118
+ "full": {
119
+ "name": "Full Pack",
120
+ "description": "All skills and capabilities",
121
+ "skills": [
122
+ "content-writer", "content-verifier", "visual-generator", "wordpress-publisher",
123
+ "sparc-architect", "sparc-coder", "sparc-tester", "sparc-reviewer", "sparc-documenter",
124
+ "security-tester", "security-auditor",
125
+ "coolify-deployer", "openstack-manager"
126
+ ]
127
+ }
128
+ },
129
+ "build": {
130
+ "script": "scripts/build-platforms.js",
131
+ "outputs": {
132
+ "claude": "./",
133
+ "gemini": "./platforms/gemini",
134
+ "codex": "./platforms/codex"
135
+ },
136
+ "commands": {
137
+ "all": "npm run build:platforms",
138
+ "claude": "npm run build:claude",
139
+ "gemini": "npm run build:gemini",
140
+ "codex": "npm run build:codex"
141
+ }
142
+ },
143
+ "distribution": {
144
+ "npm": {
145
+ "package": "myaidev-method",
146
+ "installCommand": "npx myaidev-method init --claude"
147
+ },
148
+ "marketplace": {
149
+ "url": "https://dev.myai1.ai/plugins/myaidev-method",
150
+ "manifestUrl": "https://dev.myai1.ai/plugins/myaidev-method/marketplace.json"
151
+ },
152
+ "github": {
153
+ "repository": "https://github.com/myaione/myaidev-method",
154
+ "releases": "https://github.com/myaione/myaidev-method/releases"
155
+ }
156
+ },
157
+ "metadata": {
158
+ "created": "2025-01-20",
159
+ "lastUpdated": "2025-01-20",
160
+ "minNodeVersion": "18.0.0",
161
+ "keywords": [
162
+ "claude-code",
163
+ "gemini-cli",
164
+ "codex-cli",
165
+ "ai-development",
166
+ "sparc",
167
+ "content-creation",
168
+ "security-testing",
169
+ "wordpress",
170
+ "openstack",
171
+ "coolify"
172
+ ]
173
+ }
174
+ }
@@ -0,0 +1,221 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "description": "MyAIDev Method lifecycle hooks for automated task execution",
4
+ "hooks": {
5
+ "pre-command": {
6
+ "description": "Runs before any myaidev-method command execution",
7
+ "actions": [
8
+ {
9
+ "name": "check-config",
10
+ "description": "Verify configuration is valid before command execution",
11
+ "condition": "command.requires_config",
12
+ "script": "src/scripts/check-config.js"
13
+ }
14
+ ]
15
+ },
16
+ "post-command": {
17
+ "description": "Runs after command execution completes",
18
+ "actions": [
19
+ {
20
+ "name": "update-manifest",
21
+ "description": "Update installation manifest after workflow changes",
22
+ "condition": "command.modifies_installation",
23
+ "script": "src/scripts/update-manifest.js"
24
+ }
25
+ ]
26
+ },
27
+ "pre-content-publish": {
28
+ "description": "Runs before publishing content to any platform",
29
+ "actions": [
30
+ {
31
+ "name": "validate-content",
32
+ "description": "Run content validation checks before publishing",
33
+ "condition": "always",
34
+ "tasks": [
35
+ "Check content-rules.md compliance",
36
+ "Validate frontmatter completeness",
37
+ "Verify image references exist"
38
+ ]
39
+ },
40
+ {
41
+ "name": "verify-proprietary",
42
+ "description": "Run proprietary content verification if enabled",
43
+ "condition": "env.VERIFY_CONTENT === 'true'",
44
+ "agent": "proprietary-content-verifier"
45
+ }
46
+ ]
47
+ },
48
+ "post-content-publish": {
49
+ "description": "Runs after content is successfully published",
50
+ "actions": [
51
+ {
52
+ "name": "log-publication",
53
+ "description": "Log successful publication with URL and metadata",
54
+ "condition": "always",
55
+ "tasks": [
56
+ "Record publication timestamp",
57
+ "Store published URL",
58
+ "Update content tracking database"
59
+ ]
60
+ },
61
+ {
62
+ "name": "social-notification",
63
+ "description": "Notify about new publication",
64
+ "condition": "env.NOTIFY_SOCIAL === 'true'",
65
+ "tasks": [
66
+ "Format social media snippet",
67
+ "Queue for social posting"
68
+ ]
69
+ }
70
+ ]
71
+ },
72
+ "pre-visual-generate": {
73
+ "description": "Runs before generating visual content",
74
+ "actions": [
75
+ {
76
+ "name": "check-budget",
77
+ "description": "Verify budget limits before image generation",
78
+ "condition": "always",
79
+ "tasks": [
80
+ "Check daily budget remaining",
81
+ "Check monthly budget remaining",
82
+ "Warn if approaching limits"
83
+ ]
84
+ },
85
+ {
86
+ "name": "check-api-config",
87
+ "description": "Verify visual API configuration",
88
+ "condition": "always",
89
+ "tasks": [
90
+ "Verify GOOGLE_API_KEY or OPENAI_API_KEY exists",
91
+ "Check API connectivity",
92
+ "Suggest configuration if missing"
93
+ ]
94
+ }
95
+ ]
96
+ },
97
+ "post-visual-generate": {
98
+ "description": "Runs after visual content is generated",
99
+ "actions": [
100
+ {
101
+ "name": "track-cost",
102
+ "description": "Record generation cost for budget tracking",
103
+ "condition": "always",
104
+ "tasks": [
105
+ "Update daily cost total",
106
+ "Update monthly cost total",
107
+ "Log to content-assets/cost-tracking.json"
108
+ ]
109
+ },
110
+ {
111
+ "name": "organize-asset",
112
+ "description": "Ensure proper asset organization",
113
+ "condition": "always",
114
+ "tasks": [
115
+ "Move to date-organized directory",
116
+ "Update asset manifest",
117
+ "Generate markdown reference"
118
+ ]
119
+ }
120
+ ]
121
+ },
122
+ "pre-deploy": {
123
+ "description": "Runs before deploying to any platform",
124
+ "actions": [
125
+ {
126
+ "name": "run-checks",
127
+ "description": "Run pre-deployment checks",
128
+ "condition": "always",
129
+ "tasks": [
130
+ "Verify build succeeds",
131
+ "Run test suite",
132
+ "Check environment configuration"
133
+ ]
134
+ },
135
+ {
136
+ "name": "create-backup",
137
+ "description": "Create deployment checkpoint",
138
+ "condition": "env.CREATE_DEPLOY_BACKUP === 'true'",
139
+ "tasks": [
140
+ "Tag current deployment state",
141
+ "Create rollback point"
142
+ ]
143
+ }
144
+ ]
145
+ },
146
+ "post-deploy": {
147
+ "description": "Runs after successful deployment",
148
+ "actions": [
149
+ {
150
+ "name": "health-check",
151
+ "description": "Verify deployment health",
152
+ "condition": "always",
153
+ "tasks": [
154
+ "Ping deployed URL",
155
+ "Verify expected response",
156
+ "Check critical endpoints"
157
+ ]
158
+ },
159
+ {
160
+ "name": "notify",
161
+ "description": "Send deployment notification",
162
+ "condition": "env.NOTIFY_DEPLOY === 'true'",
163
+ "tasks": [
164
+ "Send success notification",
165
+ "Include deployment URL and version"
166
+ ]
167
+ }
168
+ ]
169
+ },
170
+ "session-start": {
171
+ "description": "Runs when a new Claude Code session starts with myaidev-method",
172
+ "actions": [
173
+ {
174
+ "name": "load-context",
175
+ "description": "Load session context and previous state",
176
+ "condition": "always",
177
+ "tasks": [
178
+ "Read .myaidev-manifest.json",
179
+ "Load installed workflows",
180
+ "Check for pending tasks"
181
+ ]
182
+ },
183
+ {
184
+ "name": "check-updates",
185
+ "description": "Check for available updates",
186
+ "condition": "env.CHECK_UPDATES !== 'false'",
187
+ "tasks": [
188
+ "Compare installed version with npm registry",
189
+ "Notify if updates available"
190
+ ]
191
+ }
192
+ ]
193
+ },
194
+ "session-end": {
195
+ "description": "Runs when session is about to end",
196
+ "actions": [
197
+ {
198
+ "name": "save-state",
199
+ "description": "Persist session state for continuity",
200
+ "condition": "always",
201
+ "tasks": [
202
+ "Save active task progress",
203
+ "Update manifest with session summary",
204
+ "Clean up temporary files"
205
+ ]
206
+ }
207
+ ]
208
+ }
209
+ },
210
+ "customHooks": {
211
+ "description": "Users can define custom hooks in .myaidev-hooks.json in their project root",
212
+ "schema": {
213
+ "hookName": {
214
+ "description": "string",
215
+ "condition": "string (JavaScript expression)",
216
+ "script": "string (path to script)",
217
+ "tasks": "array of strings"
218
+ }
219
+ }
220
+ }
221
+ }
@@ -0,0 +1,179 @@
1
+ {
2
+ "name": "myaidev-marketplace",
3
+ "description": "MyAIDev Method Plugin Marketplace - Self-hosted plugin distribution",
4
+ "version": "1.0.0",
5
+ "owner": {
6
+ "name": "MyAIDev",
7
+ "email": "plugins@openmy.ai",
8
+ "url": "https://dev.myai1.ai"
9
+ },
10
+ "baseUrl": "https://dev.myai1.ai/plugins",
11
+ "apiVersion": "v1",
12
+ "lastUpdated": "2025-01-20",
13
+ "plugins": [
14
+ {
15
+ "name": "myaidev-method",
16
+ "displayName": "MyAIDev Method (Full)",
17
+ "description": "Complete AI development framework with SPARC methodology, content creation, multi-platform publishing, visual generation, security testing, and infrastructure management",
18
+ "version": "1.0.0",
19
+ "source": "./",
20
+ "homepage": "https://dev.myai1.ai/plugins/myaidev-method",
21
+ "repository": "https://github.com/myaione/myaidev-method",
22
+ "downloadUrl": "https://dev.myai1.ai/plugins/myaidev-method/releases/latest/myaidev-method.zip",
23
+ "categories": ["development", "content", "security", "deployment"],
24
+ "tags": ["sparc", "content-creation", "wordpress", "visual-generation", "security", "openstack", "coolify"],
25
+ "platforms": ["claude-code", "gemini-cli", "codex-cli"],
26
+ "skillPacks": ["content", "development", "security", "infrastructure"],
27
+ "stats": {
28
+ "downloads": 0,
29
+ "stars": 0,
30
+ "rating": 0
31
+ },
32
+ "pricing": {
33
+ "type": "free",
34
+ "license": "MIT"
35
+ },
36
+ "requirements": {
37
+ "nodeVersion": ">=18.0.0",
38
+ "claudeCodeVersion": ">=1.0.0"
39
+ }
40
+ },
41
+ {
42
+ "name": "myaidev-content",
43
+ "displayName": "MyAIDev Content Pack",
44
+ "description": "Content creation workflow - SEO-optimized writing, AI visual generation, and multi-platform publishing",
45
+ "version": "1.0.0",
46
+ "source": "./packs/content",
47
+ "homepage": "https://dev.myai1.ai/plugins/myaidev-content",
48
+ "categories": ["content", "publishing"],
49
+ "tags": ["content-creation", "wordpress", "visual-generation", "seo"],
50
+ "platforms": ["claude-code", "gemini-cli", "codex-cli"],
51
+ "skillPacks": ["content"],
52
+ "skills": ["content-writer", "content-verifier", "visual-generator", "wordpress-publisher"],
53
+ "stats": {
54
+ "downloads": 0,
55
+ "stars": 0,
56
+ "rating": 0
57
+ },
58
+ "pricing": {
59
+ "type": "free",
60
+ "license": "MIT"
61
+ }
62
+ },
63
+ {
64
+ "name": "myaidev-development",
65
+ "displayName": "MyAIDev SPARC Development Pack",
66
+ "description": "SPARC methodology for software development - Specification, Pseudocode, Architecture, Refinement, Completion",
67
+ "version": "1.0.0",
68
+ "source": "./packs/development",
69
+ "homepage": "https://dev.myai1.ai/plugins/myaidev-development",
70
+ "categories": ["development"],
71
+ "tags": ["sparc", "architecture", "testing", "code-review", "documentation"],
72
+ "platforms": ["claude-code", "gemini-cli", "codex-cli"],
73
+ "skillPacks": ["development"],
74
+ "skills": ["sparc-architect", "sparc-coder", "sparc-tester", "sparc-reviewer", "sparc-documenter"],
75
+ "stats": {
76
+ "downloads": 0,
77
+ "stars": 0,
78
+ "rating": 0
79
+ },
80
+ "pricing": {
81
+ "type": "free",
82
+ "license": "MIT"
83
+ }
84
+ },
85
+ {
86
+ "name": "myaidev-security",
87
+ "displayName": "MyAIDev Security Pack",
88
+ "description": "Security testing and auditing - PTES penetration testing and OWASP compliance auditing",
89
+ "version": "1.0.0",
90
+ "source": "./packs/security",
91
+ "homepage": "https://dev.myai1.ai/plugins/myaidev-security",
92
+ "categories": ["security"],
93
+ "tags": ["penetration-testing", "security-audit", "owasp", "ptes", "compliance"],
94
+ "platforms": ["claude-code", "gemini-cli", "codex-cli"],
95
+ "skillPacks": ["security"],
96
+ "skills": ["security-tester", "security-auditor"],
97
+ "stats": {
98
+ "downloads": 0,
99
+ "stars": 0,
100
+ "rating": 0
101
+ },
102
+ "pricing": {
103
+ "type": "free",
104
+ "license": "MIT"
105
+ }
106
+ },
107
+ {
108
+ "name": "myaidev-infrastructure",
109
+ "displayName": "MyAIDev Infrastructure Pack",
110
+ "description": "Deployment and infrastructure management - Coolify PaaS and OpenStack VM management",
111
+ "version": "1.0.0",
112
+ "source": "./packs/infrastructure",
113
+ "homepage": "https://dev.myai1.ai/plugins/myaidev-infrastructure",
114
+ "categories": ["deployment", "infrastructure"],
115
+ "tags": ["coolify", "openstack", "deployment", "devops", "cloud"],
116
+ "platforms": ["claude-code"],
117
+ "skillPacks": ["infrastructure"],
118
+ "skills": ["coolify-deployer", "openstack-manager"],
119
+ "stats": {
120
+ "downloads": 0,
121
+ "stars": 0,
122
+ "rating": 0
123
+ },
124
+ "pricing": {
125
+ "type": "free",
126
+ "license": "MIT"
127
+ }
128
+ }
129
+ ],
130
+ "categories": [
131
+ {
132
+ "id": "development",
133
+ "name": "Development",
134
+ "description": "Software development tools and workflows"
135
+ },
136
+ {
137
+ "id": "content",
138
+ "name": "Content",
139
+ "description": "Content creation and writing tools"
140
+ },
141
+ {
142
+ "id": "publishing",
143
+ "name": "Publishing",
144
+ "description": "Multi-platform content publishing"
145
+ },
146
+ {
147
+ "id": "security",
148
+ "name": "Security",
149
+ "description": "Security testing and auditing tools"
150
+ },
151
+ {
152
+ "id": "deployment",
153
+ "name": "Deployment",
154
+ "description": "Application deployment automation"
155
+ },
156
+ {
157
+ "id": "infrastructure",
158
+ "name": "Infrastructure",
159
+ "description": "Infrastructure and cloud management"
160
+ }
161
+ ],
162
+ "installation": {
163
+ "claudeCode": {
164
+ "marketplace": "/plugin marketplace add myaione/myaidev-method",
165
+ "install": "/plugin install myaidev-method@myaidev-marketplace",
166
+ "installPack": "/plugin install myaidev-content@myaidev-marketplace"
167
+ },
168
+ "npm": {
169
+ "full": "npx myaidev-method init --claude",
170
+ "workflow": "npx myaidev-method content --claude"
171
+ }
172
+ },
173
+ "support": {
174
+ "documentation": "https://dev.myai1.ai/docs/myaidev-method",
175
+ "issues": "https://github.com/myaione/myaidev-method/issues",
176
+ "discussions": "https://github.com/myaione/myaidev-method/discussions",
177
+ "email": "support@myai1.ai"
178
+ }
179
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myaidev-method",
3
- "version": "0.2.24-1",
3
+ "version": "0.2.24-2",
4
4
  "description": "Comprehensive development framework with SPARC methodology for AI-assisted software development, security testing (PTES, OWASP, penetration testing, compliance auditing), AI visual content generation (Gemini, OpenAI GPT Image 1.5, Imagen, FLUX 2, Veo 3), OpenStack VM management, multi-platform publishing (WordPress, PayloadCMS, Astro, Docusaurus, Mintlify), and Coolify deployment",
5
5
  "mcpName": "io.github.myaione/myaidev-method",
6
6
  "main": "src/index.js",
@@ -52,7 +52,11 @@
52
52
  "configure:visual": "node src/scripts/configure-visual-apis.js",
53
53
  "generate:visual": "node src/scripts/generate-visual-cli.js",
54
54
  "convert:html": "node src/scripts/html-conversion-cli.js",
55
- "init": "node src/scripts/init-project.js"
55
+ "init": "node src/scripts/init-project.js",
56
+ "build:platforms": "node scripts/build-platforms.js all",
57
+ "build:claude": "node scripts/build-platforms.js claude",
58
+ "build:gemini": "node scripts/build-platforms.js gemini",
59
+ "build:codex": "node scripts/build-platforms.js codex"
56
60
  },
57
61
  "keywords": [
58
62
  "claude-code",
@@ -147,6 +151,13 @@
147
151
  "src/",
148
152
  "docs/",
149
153
  "dist/",
154
+ ".claude-plugin/",
155
+ "skills/",
156
+ "hooks/",
157
+ "commands",
158
+ "agents",
159
+ "extension.json",
160
+ "marketplace.json",
150
161
  "README.md",
151
162
  "USER_GUIDE.md",
152
163
  "DEVELOPER_USE_CASES.md",
@@ -164,7 +175,8 @@
164
175
  "TECHNICAL_ARCHITECTURE.md",
165
176
  "PACKAGE_FIXES_SUMMARY.md",
166
177
  "PAYLOADCMS_AUTH_UPDATE.md",
167
- "CHANGELOG.md"
178
+ "CHANGELOG.md",
179
+ "PLUGIN_ARCHITECTURE.md"
168
180
  ],
169
181
  "engines": {
170
182
  "node": ">=18.0.0"