Agent Plugins Marketplace
All plugins

workflowy

v4.0.0

Workflowy 노드 하나를 작업 흐름(workstream)의 기록으로 삼아, Claude Code 세션들이 그 아래에 작업 과정을 이어서 정리해 기록한다.

Claude Code1 Skill1 MCP serverstdio

By JeongseokChoi0 GitHub starsUpdated 2 hours ago

Directory evidence

Runtimes
Claude Code
Parsed components
2 skill or MCP entries
Source updated
Sep 24, 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 workflowy 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 workflowy@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/JeongseokChoi/j-ch-marketplace

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

Plugin files

plugins/workflowy/
├── .claude-plugin/plugin.json
├── skills/workstream/SKILL.md
└── .mcp.json

Included Skills1

workstreamskills/workstream/SKILL.md

사용자가 지정한 Workflowy 노드 하나를 작업 흐름(workstream)의 기록으로 삼아, 이 세션의 작업 과정을 그 아래에 이어서 정리해 쓴다. 그 노드 아래에 이미 있는 기록은 이어받는다. 사용자가 /workflowy:workstream <노드 id> 로 시작하고, sync 로 Workflowy 의 전체 트리를 다시 받아 cache 를 새로 채우고, clear-cache 로 cache 를 비우고, stop 으로 멈추고, doctor 로 점검한다.

MCP servers1

workflowystdio
command
python3
args
${CLAUDE_PLUGIN_ROOT}/scripts/mcp.py
env.WORKFLOWY_API_KEY
${user_config.api_key}
env.WORKFLOWY_DATA
${CLAUDE_PLUGIN_DATA}

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Plugin manifests1

plugins/workflowy/.claude-plugin/plugin.json
{
  "name": "workflowy",
  "displayName": "Workflowy Workstream Log",
  "description": "Workflowy 노드 하나를 작업 흐름(workstream)의 기록으로 삼아, Claude Code 세션들이 그 아래에 작업 과정을 이어서 정리해 기록한다.",
  "version": "4.0.0",
  "author": {
    "name": "JeongseokChoi",
    "url": "https://github.com/JeongseokChoi"
  },
  "homepage": "https://github.com/JeongseokChoi/j-ch-marketplace",
  "repository": "https://github.com/JeongseokChoi/j-ch-marketplace",
  "userConfig": {
    "api_key": {
      "type": "string",
      "title": "Workflowy API Key",
      "description": "https://workflowy.com/api-key 에서 발급",
      "sensitive": true,
      "required": true
    }
  },
  "mcpServers": {
    "workflowy": {
      "command": "python3",
      "args": [
        "${CLAUDE_PLUGIN_ROOT}/scripts/mcp.py"
      ],
      "env": {
        "WORKFLOWY_API_KEY": "${user_config.api_key}",
        "WORKFLOWY_DATA": "${CLAUDE_PLUGIN_DATA}"
      }
    }
  }
}

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

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