{
  "markdown": "# monkey-skills\n\nRead this in: **English** | [日本語](README.ja.md) | [繁體中文](README.zh-TW.md)\n\n> Personal Claude Code plugin marketplace — 11 plugins covering domain-team workflows, skill development, philosophical thinking, Obsidian, investing, copywriting, slides, book distillation, repo knowledge, artifact deconstruction, and Salesforce SOQL query.\n\n## Plugins\n\n| Plugin | Version | Skills | Commands | Description |\n|--------|---------|-------:|---------:|-------------|\n| [`domain-teams`](domain-teams/) | 5.5.1 | 11 | 9 | Domain team skills — planning, code, design, research, copywriting with checkpoint-based quality gates. |\n| [`loom-code`](loom-code/) | 1.8.1 | 5 | 0 | Five stations — write-plan, build, review, ship, maintain — carry one change from plan to merged PR, with paired task tests and one complete branch-end review. Claude Code + Codex. |\n| [`loom-design`](loom-design/) | 1.1.0 | 4 | 0 | Two stations — capture-intent, write-spec — turn a rough idea into a confirmed intent and a risk-declared spec, plus two tools: product-principles and design-system. Reads loom-code's contract package. Claude Code + Codex. |\n| [`loom-workflow`](loom-workflow/) | 4.1.0 | 10 | 4 | Loom workflow tools for git-backed project memory, `critique` (proposal / complexity), recap, handoff, session distill, `goal-create`, `independent-advisor` cross-executor second opinion, and long-term Outcome Maps whose delivery arcs are intents. |\n| [`philosophers-toolkit`](philosophers-toolkit/) | 1.0.4 | 12 | 12 | Philosophical thinking frameworks for problem clarification and deeper reasoning. |\n| [`obsidian`](obsidian/) | 3.5.0 | 13 | 1 | Obsidian vault workflows — daily notes, markdown, bases, diagrams, canvas, file intel, vault management, dashboard design. |\n| [`investing-toolkit`](investing-toolkit/) | 1.16.5 | 15 | 5 | Investing research toolkit — macro regime diagnosis (US/JP/TW/KR/CN), DCF, screener, equity snapshots via primary-source adapters. |\n| [`copywriting-toolkit`](copywriting-toolkit/) | 1.14.0 | 14 | 1 | Pipeline-structured copywriting — intake, ideation, neta injection, 5 form-specific drafters, voice positioning, ethics + form gates, audit. |\n| [`tsundoku`](tsundoku/) | 0.11.0 | 4 | 5 | Tsundoku 積読 — turn an owned-but-unread Kobo e-book pile into actionable agent skills via the RIA-TV++ distillation pipeline. |\n| [`repo-wiki`](repo-wiki/) | 1.0.0 | 3 | 3 | LLM Wiki Pattern for code repos — seed `.repo-wiki/` from git history (init), grow from changes / context / external docs (ingest, polymorphic), query with verification against `src/` (Eager triggers + segmented output). |\n| [`deconstruct-toolkit`](deconstruct-toolkit/) | 0.2.1 | 4 | 1 | Reverse-engineer polished artifacts (copy / docs / UI / arguments / products / organizations) — surface design blueprints, hidden frameworks, rhetorical mechanisms, intentional omissions. Grounded in Derrida / Barthes / Toulmin / Lakoff / Goffman / Cialdini / Bhatia / Nielsen-Norman, with EN/JA/ZH cultural-variant lenses (Hinds kishōtenketsu / 劉勰《文心雕龍》六觀 / Hu/Hwang face-and-favor). BCG「バリュー・チェーンの脱構築」系譜. |\n| [`salesforce-toolkit`](salesforce-toolkit/) | 0.1.0 | 1 | 1 | Salesforce DX MCP server wrapped as Claude Code plugin — brew-first installer, read-only SOQL query (data toolset only). macOS only. ⚠️ Not supported in the Cowork sandbox (TTY-bound OAuth); installs on Codex CLI too (MCP auto-registers). |\n\n**Totals:** 84 skills and 42 slash commands across 10 plugins listed (the marketplace ships 18 — table not yet fully synced; see [`marketplace.json`](.claude-plugin/marketplace.json) for the authoritative list).\n\n> Plugins marked ⚠️ in their own description (`investing-toolkit`, `tsundoku`, `salesforce-toolkit`, plus the `defuddle` skill in `obsidian`) are not supported in the Cowork sandbox — it blocks their external network access or subprocess use. (`salesforce-toolkit` does install on Codex CLI; its ⚠️ is Cowork-specific, not \"Claude Code only\".)\n\n## Install\n\n### Claude Code (marketplace)\n\n```bash\n/plugin marketplace add kouko/monkey-skills\n/plugin install <plugin-name>@monkey-skills\n```\n\nReplace `<plugin-name>` with any name from the table above.\n\n### Gemini CLI (extension)\n\n```bash\ngemini extensions install https://github.com/kouko/monkey-skills\n```\n\nThe extension manifest lives at [`gemini-extension.json`](gemini-extension.json).\n\n### Codex\n\nSee [`.codex/INSTALL.md`](.codex/INSTALL.md) for symlink and plugin installation modes.\n\n## Repository layout\n\n```\nmonkey-skills/\n├── .claude-plugin/\n│   └── marketplace.json          # plugin registry\n├── .codex/\n│   └── INSTALL.md                # Codex install instructions\n├── .github/workflows/\n│   ├── skill-structure.yml       # CI: enforce skill conventions\n│   └── scraper-deps-monthly.yml  # CI: monthly dep refresh\n├── domain-teams/                 # plugin\n├── loom-workflow/                # plugin\n├── philosophers-toolkit/         # plugin\n├── obsidian/                     # plugin\n├── investing-toolkit/            # plugin\n├── copywriting-toolkit/          # plugin\n├── tsundoku/                     # plugin\n├── repo-wiki/                    # plugin\n├── deconstruct-toolkit/          # plugin\n├── docs/                         # cross-cutting docs (i18n glossary, etc.)\n├── scripts/                      # repo-level tooling\n├── CLAUDE.md                     # project conventions for Claude Code\n├── GEMINI.md                     # project conventions for Gemini CLI\n├── AGENTS.md                     # generic agent conventions\n├── ATTRIBUTION.md                # third-party imports & licenses\n├── LICENSE                       # MIT\n└── gemini-extension.json         # Gemini CLI extension manifest\n```\n\n## Contributing\n\nThis is a personal marketplace. Issues and PRs are welcome via the\n[GitHub repository](https://github.com/kouko/monkey-skills). For\nskill-development conventions (file paths, two-layer spec, quality\ngates, agent roles, cross-plugin delegation), see [`CLAUDE.md`](CLAUDE.md).\n\nTo run the test suite from a clean checkout:\n\n```\ngit clone https://github.com/kouko/monkey-skills.git && cd monkey-skills\npython3 -m venv .venv && source .venv/bin/activate\npython3 -m pip install -r requirements-dev.txt\npython3 -m pytest loom-code/scripts/ scripts/ .claude/hooks/ -q -n auto\n```\n\nWith uv instead: `uv venv .venv && source .venv/bin/activate`, then\n`uv pip install -r requirements-dev.txt`, then the same pytest line.\n\nFor the exact isolated package gate, use the `package-tests:` line in\n[`docs/loom/KICKOFF-DEFAULTS.md`](docs/loom/KICKOFF-DEFAULTS.md). It runs both\ntest groups from the hash-verified lock; CI covers the same paths in separate\njobs.\n\n## License\n\nMIT — see [`LICENSE`](LICENSE).\n\nThird-party components (Obsidian skills from kepano and axtonliu,\n`skill-creator-advance` from AllanYiin, `skill-judge` from softaworks,\nand others) are MIT-licensed and credited in [`ATTRIBUTION.md`](ATTRIBUTION.md).\n",
  "bytes": 6913,
  "sha": "bafb67e86c935847e3405dda55ad56dedd3f00b5e4f244b1ef4c8b19df388e9d",
  "repo_slug": "kouko/monkey-skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_kouko_monkey_skills_5e8f3c1e/readme"
}