Agent Plugins Marketplace
← All plugins

rocky

v0.24.0

rocky — the owner's personal agent tool: a Rust daemon (shared todo board + streamable HTTP MCP, 127.0.0.1:8636) with this plugin as its thin Claude Code client. Board tools todo_list / todo_write / todo_status / note_list / note_write come from the daemon; worklog_* (append-only local JSONL agent journal, per project) is served by the CLI's stdio MCP server (`rocky mcp worklog`). Hooks: SessionStart boots the daemon (version-aware restart), UserPromptSubmit injects human board changes, Stop claims handoffs and auto-captures the turn into the worklog. Slash commands: /rocky:next (pick the next board item), /rocky:brainstorm, /rocky:review, /rocky:finish, /rocky:resolve-reviews, /rocky:recall. Skills: board, writing-cc-plugin. Subagent: reviewer. Absorbed the former rocky-todo plugin/repo (D-046).

Claude Code2 Skills2 MCP serversStreamable HTTPstdio

By Minjun KimLicense: MIT0 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Claude Code
Parsed components
4 skill or MCP entries
Source updated
Sep 27, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →

Install rocky for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install rocky@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/minjun0219/rocky

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugin/.

Plugin files

plugin/
├── .claude-plugin/plugin.json
├── skills/board/SKILL.md
├── skills/writing-cc-plugin/SKILL.md
└── .mcp.json

Included Skills2

boardskills/board/SKILL.md

Use when managing the shared rocky board from a session — planning work the user should see live in the web UI ("보드에 올려둬", "todo 정리해줘"), starting/finishing tracked work items, or leaving scratchpad notes for the user. Covers the rocky daemon's MCP tools (todo_list / todo_write / todo_status / note_list / note_write) and the rocky CLI fallback, the start→done etiquette that powers the "처리중" indicator, link-attachment conventions (GitHub issue / Todoist URLs), and the archive-only rule (no deletion exists).

writing-cc-pluginskills/writing-cc-plugin/SKILL.md

Use when creating, authoring, hardening, debugging, packaging, publishing, or reviewing a Claude Code plugin — anything touching plugin.json / the manifest, hooks/hooks.json, plugin-bundled MCP or LSP servers, monitors, agents, commands, skills, skills-directory (@skills-dir) plugins, local testing (--plugin-dir / --plugin-url / /reload-plugins), converting .claude/ config into a plugin, marketplace publishing, install scopes, version management, or `claude plugin` CLI commands. Covers non-obvious rules (component dir placement, hook→MCP tool scoping, version fallback) that are easy to get wrong from memory.

MCP servers2

rockyStreamable HTTP
url
http://127.0.0.1:8636/mcp
worklogstdio
command
${CLAUDE_PLUGIN_ROOT}/bin/rocky
args
mcp worklog

Plugin manifests1

plugin/.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin.json",
  "name": "rocky",
  "version": "0.24.0",
  "description": "rocky — the owner's personal agent tool: a Rust daemon (shared todo board + streamable HTTP MCP, 127.0.0.1:8636) with this plugin as its thin Claude Code client. Board tools todo_list / todo_write / todo_status / note_list / note_write come from the daemon; worklog_* (append-only local JSONL agent journal, per project) is served by the CLI's stdio MCP server (`rocky mcp worklog`). Hooks: SessionStart boots the daemon (version-aware restart), UserPromptSubmit injects human board changes, Stop claims handoffs and auto-captures the turn into the worklog. Slash commands: /rocky:next (pick the next board item), /rocky:brainstorm, /rocky:review, /rocky:finish, /rocky:resolve-reviews, /rocky:recall. Skills: board, writing-cc-plugin. Subagent: reviewer. Absorbed the former rocky-todo plugin/repo (D-046).",
  "author": {
    "name": "Minjun Kim"
  },
  "license": "MIT",
  "keywords": [
    "todo",
    "board",
    "daemon",
    "worklog",
    "rocky",
    "mcp",
    "rust"
  ],
  "mcpServers": {
    "rocky": {
      "type": "http",
      "url": "http://127.0.0.1:8636/mcp"
    },
    "worklog": {
      "type": "stdio",
      "command": "${CLAUDE_PLUGIN_ROOT}/bin/rocky",
      "args": [
        "mcp",
        "worklog"
      ]
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[rocky on Agent Plugins Marketplace](https://pluginsmp.com/plugins/rocky)