@intentsolutionsio/plane 0.1.2 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentsolutionsio/plane",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Plane is a team behavior observatory — synthesize Plane API data into observations about how teams actually behave under pressure (cycle velocity vs. plan, ownership churn, reviewer gate strength, pri",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plane",
|
|
@@ -1,17 +1,48 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: plane-analyst
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Plane behavioral synthesis agent. Orchestrates the five compound commands
|
|
4
|
+
|
|
5
5
|
(cycle-velocity, stale-tickets, reviewer-gate-strength, priority-drift,
|
|
6
|
+
|
|
6
7
|
cross-project-load) by calling mcp__plane endpoints in sequence, applying
|
|
8
|
+
|
|
7
9
|
the JOIN + scoring logic, and rendering the output tables per the NOI.
|
|
8
|
-
|
|
10
|
+
|
|
11
|
+
Use when the user asks behavioral questions about a team''s Plane workspace
|
|
12
|
+
|
|
9
13
|
— cycle health, stuck work, review bottlenecks, planning vs. reality,
|
|
10
|
-
|
|
11
|
-
|
|
14
|
+
|
|
15
|
+
workload distribution.'
|
|
16
|
+
tools:
|
|
17
|
+
- Read
|
|
18
|
+
- Write
|
|
19
|
+
- Edit
|
|
20
|
+
- Bash
|
|
21
|
+
- Glob
|
|
22
|
+
- Grep
|
|
23
|
+
- WebFetch
|
|
24
|
+
- WebSearch
|
|
25
|
+
- Task
|
|
26
|
+
- TodoWrite
|
|
12
27
|
model: inherit
|
|
28
|
+
color: purple
|
|
29
|
+
version: 1.0.0
|
|
30
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
31
|
+
tags:
|
|
32
|
+
- productivity
|
|
33
|
+
- plane
|
|
34
|
+
- analyst
|
|
35
|
+
disallowedTools: []
|
|
36
|
+
skills: []
|
|
37
|
+
background: false
|
|
38
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
39
|
+
# effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
|
|
40
|
+
# maxTurns: 50 # cap the agentic loop (omit = engine default)
|
|
41
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
42
|
+
# isolation: worktree # run in an isolated git worktree
|
|
43
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
44
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
13
45
|
---
|
|
14
|
-
|
|
15
46
|
# Plane Analyst (Behavioral Synthesis)
|
|
16
47
|
|
|
17
48
|
> **Parent skill**: `skills/plane/SKILL.md`
|
|
@@ -1,15 +1,43 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: plane-expert
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Plane API surface specialist. Answers "how do I query X in Plane" / "what endpoint
|
|
4
|
+
|
|
5
5
|
does Y" / "what is the response shape for Z" without firing live API calls.
|
|
6
|
-
|
|
6
|
+
|
|
7
|
+
Reads from the parent skill''s references/api-surface.md as ground truth. Use when
|
|
8
|
+
|
|
7
9
|
the user wants to understand the API surface before running a compound command,
|
|
8
|
-
|
|
9
|
-
|
|
10
|
+
|
|
11
|
+
or when debugging an unexpected response shape from mcp__plane.'
|
|
12
|
+
tools:
|
|
13
|
+
- Read
|
|
14
|
+
- Write
|
|
15
|
+
- Edit
|
|
16
|
+
- Bash
|
|
17
|
+
- Glob
|
|
18
|
+
- Grep
|
|
19
|
+
- WebFetch
|
|
20
|
+
- WebSearch
|
|
21
|
+
- Task
|
|
22
|
+
- TodoWrite
|
|
10
23
|
model: inherit
|
|
24
|
+
color: orange
|
|
25
|
+
version: 1.0.0
|
|
26
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
27
|
+
tags:
|
|
28
|
+
- productivity
|
|
29
|
+
- plane
|
|
30
|
+
disallowedTools: []
|
|
31
|
+
skills: []
|
|
32
|
+
background: false
|
|
33
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
34
|
+
# effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
|
|
35
|
+
# maxTurns: 50 # cap the agentic loop (omit = engine default)
|
|
36
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
37
|
+
# isolation: worktree # run in an isolated git worktree
|
|
38
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
39
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
11
40
|
---
|
|
12
|
-
|
|
13
41
|
# Plane Expert (Domain Specialist)
|
|
14
42
|
|
|
15
43
|
> **Parent skill**: `skills/plane/SKILL.md`
|