You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 21, 2026. It is now read-only.
Problem
Repository lacks a root package.json for dependency management and tooling.
Current state:
package.jsonscripts/directory have no dependency managementWhy it matters:
Without a root package.json:
Suggested Solution
Create a root
package.jsonwith:{ "name": "agents-skills-plugins", "version": "1.0.0", "description": "Claude Code Plugin Marketplace - Community plugins, agents, and skills", "private": true, "scripts": { "validate": "node scripts/validate-plugins.js", "lint": "eslint scripts/", "format": "prettier --write '**/*.json' '**/*.md'", "test": "npm run validate", "update-index": "node scripts/update-index.js" }, "devDependencies": { "ajv-cli": "^5.0.0", "prettier": "^3.0.0", "eslint": "^8.0.0" } }Acceptance Criteria
package.jsoncreated