Files
pm-claude-skills/package.json
T
mohitagw15856 e9bc1d0626 Security auditor, personas, orchestration, docs catalog & roadmap (#35)
Closes the remaining gaps vs alirezarezvani/claude-skills across trust, content
types, discoverability, and community.

Security (trust signal + useful):
- scripts/skill-audit.mjs scans skills/*/SKILL.md + each skill's scripts/ for
  prompt injection, exfiltration, dynamic code exec, destructive shell, secrets,
  and hidden text. HIGH fails CI (.github/workflows/skill-audit.yml) + a badge.
- New skill-security-auditor skill teaches the same review (production tier).

Content types:
- output-styles/ — 4 personas (Startup CTO, Growth Marketer, Solo Founder,
  Product Leader) as Claude Code output styles; --agent claude installs them too.
- ORCHESTRATION.md — Skill Chain / Multi-Agent Handoff / Domain Deep-Dive /
  Solo Sprint patterns.

Discoverability:
- scripts/build-docs.mjs generates a server-rendered, SEO-indexable
  web/catalog.html of all skills (built in the Pages deploy; gitignored).
  Linked from README + playground.

Community:
- ROADMAP.md (now/next/later + good-first-issues).

README badges/sections, TIERS (47 production), CHANGELOG, package.json files,
and exports/web index all updated. SkillCheck + security audit + exports verified.


Claude-Session: https://claude.ai/code/session_016JWn5jRD5tcEFKrubjQ6Px

Co-authored-by: Claude <noreply@anthropic.com>
2026-06-18 08:09:14 +01:00

58 lines
1.5 KiB
JSON

{
"name": "pm-claude-skills",
"version": "18.0.0",
"type": "module",
"description": "167 professional Agent Skills (SKILL.md) + subagents + slash commands for Claude, ChatGPT, Gemini, Cursor, Codex & Hermes. Install into any AI coding tool with: npx pm-claude-skills add --agent <tool>.",
"keywords": [
"claude",
"claude-code",
"claude-skills",
"agent-skills",
"skill-md",
"chatgpt",
"gemini",
"cursor",
"codex",
"hermes-agent",
"ai-agents",
"subagents",
"slash-commands",
"prompt-engineering",
"product-management"
],
"license": "MIT",
"homepage": "https://github.com/mohitagw15856/pm-claude-skills",
"repository": {
"type": "git",
"url": "https://github.com/mohitagw15856/pm-claude-skills.git"
},
"bugs": {
"url": "https://github.com/mohitagw15856/pm-claude-skills/issues"
},
"author": "Mohit Aggarwal",
"bin": {
"pm-claude-skills": "bin/cli.mjs",
"pm-claude-skills-mcp": "mcp/server.mjs"
},
"files": [
"bin/",
"mcp/",
"skills/",
"agents/",
"commands/",
"output-styles/",
"exports/",
"skill-tiers.json"
],
"scripts": {
"new-skill": "node scripts/new-skill.mjs",
"skillcheck": "node scripts/skillcheck.mjs",
"build:exports": "node scripts/build-exports.mjs",
"build:web": "node web/build-skills.mjs",
"check": "node scripts/skillcheck.mjs && node scripts/build-exports.mjs --check"
},
"engines": {
"node": ">=18"
}
}