mirror of
https://github.com/alirezarezvani/claude-skills.git
synced 2026-09-12 23:01:23 +00:00
Same root cause as #587/#591 — Claude Code's runtime loader rejects array-form skills paths like ["./content-production", "./ai-seo", ...] even when each entry is a valid subdirectory containing SKILL.md. `claude plugin validate` accepts them but the loader does not. The proven canonical layout (used by self-improving-agent in #536): <plugin>/ ├── .claude-plugin/plugin.json skills: "./skills" └── skills/ ├── <skill-1>/SKILL.md ├── <skill-2>/SKILL.md └── ... Restructured 9 multi-skill domain plugins: - business-growth (4 skills moved) - c-level-advisor (28) - engineering (36) - engineering-team (32) - finance (2) - marketing-skill (43) - product-team (12) - project-management (8) - ra-qm-team (13) Also fixed standalone plugins that had root SKILL.md + ./skills/ subdir (agenthub, autoresearch-agent, executive-mentor, playwright-pro). The loader rejected them despite skills="./skills" because of the conflicting root SKILL.md (compare self-improving-agent which works because PR #536 moved its root SKILL.md). Moved each root SKILL.md into ./skills/<name>/. Restored standalone plugin folders to their original paths after the multi-skill restructure swept them into parent skills/ directories (marketplace.json source paths require original locations). Removed 7 orphaned marketplace entries that pointed to skill folders without their own plugin.json (content-creator, demand-gen, fullstack-engineer, aws-architect, product-manager, scrum-master, skill-security-auditor) — these were already non-functional. Bumped patch versions on every changed plugin and synced marketplace.json. Marketplace now lists 29 working plugins (down from 36). After merge: users run `/plugin marketplace update claude-code-skills` followed by `/plugin update --all` to pick up the working layout.
72 lines
No EOL
1.9 KiB
JSON
72 lines
No EOL
1.9 KiB
JSON
{
|
|
"name": "sample-web-app",
|
|
"version": "1.2.3",
|
|
"description": "A sample web application with various dependencies for testing dependency auditing",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"dev": "nodemon index.js",
|
|
"build": "webpack --mode production",
|
|
"test": "jest",
|
|
"lint": "eslint src/",
|
|
"audit": "npm audit"
|
|
},
|
|
"keywords": ["web", "app", "sample", "dependency", "audit"],
|
|
"author": "Claude Skills Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "4.18.1",
|
|
"lodash": "4.17.20",
|
|
"axios": "1.5.0",
|
|
"jsonwebtoken": "8.5.1",
|
|
"bcrypt": "5.1.0",
|
|
"mongoose": "6.10.0",
|
|
"cors": "2.8.5",
|
|
"helmet": "6.1.5",
|
|
"winston": "3.8.2",
|
|
"dotenv": "16.0.3",
|
|
"express-rate-limit": "6.7.0",
|
|
"multer": "1.4.5-lts.1",
|
|
"sharp": "0.32.1",
|
|
"nodemailer": "6.9.1",
|
|
"socket.io": "4.6.1",
|
|
"redis": "4.6.5",
|
|
"moment": "2.29.4",
|
|
"chalk": "4.1.2",
|
|
"commander": "9.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "2.0.22",
|
|
"jest": "29.5.0",
|
|
"supertest": "6.3.3",
|
|
"eslint": "8.40.0",
|
|
"eslint-config-airbnb-base": "15.0.0",
|
|
"eslint-plugin-import": "2.27.5",
|
|
"webpack": "5.82.1",
|
|
"webpack-cli": "5.1.1",
|
|
"babel-loader": "9.1.2",
|
|
"@babel/core": "7.22.1",
|
|
"@babel/preset-env": "7.22.2",
|
|
"css-loader": "6.7.4",
|
|
"style-loader": "3.3.3",
|
|
"html-webpack-plugin": "5.5.1",
|
|
"mini-css-extract-plugin": "2.7.6",
|
|
"postcss": "8.4.23",
|
|
"postcss-loader": "7.3.0",
|
|
"autoprefixer": "10.4.14",
|
|
"cross-env": "7.0.3",
|
|
"rimraf": "5.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=8.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/example/sample-web-app.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/example/sample-web-app/issues"
|
|
},
|
|
"homepage": "https://github.com/example/sample-web-app#readme"
|
|
} |