plugins/tensorpm/skills/tensorpm/SKILL.md
--- name: tensorpm-agentic-pm description: Manage structured projects with long-term stable memory shared across humans and AI agents. Use this skill whenever the work needs a dedicated project manager (or project-manager agent) — including action items, kanban, sprint planning, decisions, history, and anything that benefits from persistent project context across sessions and agents. Read and write the project graph via MCP tools and the A2A protocol. Triggers: TensorPM, Context-Driven Project M
npx skillsauth add neo552/tensorpm-releases plugins/tensorpm/skills/tensorpmInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
TensorPM is the project context layer: one project graph (goals, action items, decisions, history) shared by humans (desktop app) and AI agents (MCP + A2A). Use this skill to read and write that graph.
# macOS
brew install --cask neo552/tensorpm/tensorpm
# Windows
winget install --id Neo552.TensorPM --exact --accept-package-agreements --accept-source-agreements
Direct downloads:
# macOS DMG
curl -fL -o /tmp/TensorPM-macOS.dmg https://tensorpm.com/api/download/macos
# Linux AppImage
curl -fL -o ~/TensorPM.AppImage https://tensorpm.com/api/download/linux
# Windows Setup.exe
Invoke-WebRequest -Uri https://tensorpm.com/api/download/windows -OutFile $env:TEMP\TensorPM-Setup.exe
Use TensorPM Releases only for version history or explicit version pinning. Prefer gh release list -R Neo552/TensorPM-Releases when only beta tags exist.
Built-in installers for Claude Desktop, Claude Code, Codex, Continue, Antigravity, and Cursor live under TensorPM → Settings → Integrations. For any other MCP-capable client, point it at the bundled stdio server:
{
"mcpServers": {
"tensorpm": {
"command": "node",
"args": ["<absolute-path-to>/dist/backend/mcp/server.js"]
}
}
}
The exact server.js path per OS is shown in Settings → Integrations → Manual Setup. No env vars or auth tokens go in the client config — the server reads its bridge token from ~/.tensorpm/mcp-bridge-token (mode 0600, auto-rotated). The desktop app must be running when the client invokes the server.
TOML form (Codex ~/.codex/config.toml):
[mcp_servers.tensorpm]
command = "node"
args = ["<absolute-path-to>/dist/backend/mcp/server.js"]
YAML form (Continue ~/.continue/config.yaml):
mcpServers:
- name: tensorpm
command: node
args:
- <absolute-path-to>/dist/backend/mcp/server.js
| Task | Use |
| -------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| List/create/update action items | MCP tools |
| Read existing decisions | MCP get_project |
| Record / supersede / withdraw / link / unlink decisions | MCP decision write tools (record_decision, supersede_decision, withdraw_decision, link_decision, unlink_decision) |
| Switch or list workspaces | MCP tools |
| Set provider API keys | MCP set_api_key |
| Bug report with diagnostic bundle | MCP submit_bug_report |
| Non-bug feedback (suggestion, partnership, licensing, collaboration) | MCP submit_feedback |
| Account, billing, credits, donations | MCP billing tools (return browser URLs only — never confirm payment) |
| Project-wide / contextual changes | A2A message/send to the project agent |
| Multi-turn planning with conversation state | A2A with contextId |
| Schedule a future TensorPM-agent run / reminder | A2A message/send — ask the project agent to schedule itself |
Default: MCP for typed CRUD, A2A for intent and context-aware planning. Core project context (profile, budget, people, categories) can only be changed by the project agent — propose changes with propose_updates (human review required) or message the agent via A2A.
The TensorPM project agent can also schedule its own future runs (e.g. "remind me to review the budget next Tuesday"). External agents trigger this by sending an A2A message/send describing the future intent — there is no direct MCP tool for self-scheduling.
TensorPM is bidirectional MCP (both server and client) plus A2A. As a server it exposes the project graph to any MCP/A2A agent; as a client it can connect external MCP servers into the project (see Agent MCP Clients).
TensorPM can also delegate work to coding agents:
developer, architect, or reviewer.Project participants can interact with the TensorPM agent outside the desktop app through native connectors:
Both connectors are governed by a per-role / per-participant permission model: each person's project role decides what they may do — post status, complete action items, propose decisions, or read-only.
Incoming messages and mails are not applied directly. They are distilled into Action Items, Decisions, or Risks and only mutate the project graph after human confirmation (the Distiller is always human-in-the-loop — there is no auto-apply path).
list_action_items / get_project / A2A read endpoint to confirm state.To give the in-app TensorPM agent access to other MCP servers, write a config file — TensorPM imports it on startup. Preferred locations (first match wins):
~/.tensorpm/agent-mcps.json (user-wide).tensorpm/agent-mcps.json (project-local).tensorpm/agent-mcps.local.json (local override)TENSORPM_AGENT_MCP_CONFIG_FILE env var (one or more paths separated by the OS path delimiter)Standard mcpServers and TensorPM-native agentMcpServers blocks are both accepted. The UI's own snapshot at ~/.tensorpm/agent-mcps.generated.json is read-only — write user-managed config to agent-mcps.json instead.
YYYY-MM-DD.http://localhost:37850. Verify with GET /.well-known/agent.json.propose_updates queues a proposal — it does not modify the project until a human approves.tools
--- name: tensorpm-agentic-pm description: Manage structured projects with long-term stable memory shared across humans and AI agents. Use this skill whenever the work needs a dedicated project manager (or project-manager agent) — including action items, kanban, sprint planning, decisions, history, and anything that benefits from persistent project context across sessions and agents. Read and write the project graph via MCP tools and the A2A protocol. Triggers: TensorPM, Context-Driven Project M
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------