From harness-claude
Selects next highest-impact unblocked roadmap item from docs/roadmap.md by scoring candidates on position, dependents, affinity; analyzes top specs and pulse reports; recommends and assigns after confirmation. For prioritizing multiple items.
npx claudepluginhub intense-visions/harness-engineering --plugin harness-claudeThis skill uses the workspace's default tool permissions.
> AI-assisted selection of the next highest-impact unblocked roadmap item. Scores candidates, recommends one, assigns it, and transitions to the appropriate next skill.
Adds prioritized items to project roadmap with codebase review for duplicates and existing coverage. Use when planning product direction.
Updates, creates, or reprioritizes product roadmaps using project trackers or user input. Adds items, changes statuses, applies RICE/MoSCoW/ICE prioritization, shifts timelines.
Creates and manages unified project roadmaps by scanning specs in docs/changes/* and plans, proposing milestone groupings for human confirmation before writing docs/roadmap.md. Use for status checks or --create/--add/--sync/--edit.
Share bugs, ideas, or general feedback.
AI-assisted selection of the next highest-impact unblocked roadmap item. Scores candidates, recommends one, assigns it, and transitions to the appropriate next skill.
Never assign or transition without the human confirming the recommendation first.
Present the ranked candidates, the AI reasoning, and the recommended pick. Wait for explicit confirmation before making any changes.
docs/roadmap.md exists.
parseRoadmap from @harness-engineering/core.--user argument if providedgit config user.name or git config user.emailscoreRoadmapCandidates(roadmap, { currentUser }) from @harness-engineering/core.Present the top 5 candidates:
ROADMAP PILOT -- Candidate Scoring
Top candidates (scored by position 50%, dependents 30%, affinity 20%):
# Feature Milestone Priority Score Breakdown
1. Feature A MVP Release P0 0.85 pos:0.9 dep:0.8 aff:1.0
2. Feature B MVP Release P1 0.72 pos:0.8 dep:0.6 aff:0.5
3. Feature C Q2 Release -- 0.65 pos:0.7 dep:0.5 aff:0.0
4. Feature D Backlog -- 0.40 pos:0.3 dep:0.4 aff:0.0
5. Feature E Backlog -- 0.35 pos:0.2 dep:0.3 aff:0.0
1b. Read the most recent pulse report (if any):
docs/pulse-reports/ and filter to those matching the
regex /^\d{4}-\d{2}-\d{2}_\d{2}-\d{2}\.md$/ (the canonical
YYYY-MM-DD_HH-MM.md pulse-report filename shape). Filtering before
sorting prevents non-conforming files (e.g. README.md, NOTES.md,
partial-timestamp drafts) from corrupting the signal.RECOMMENDATION
I recommend Feature A (MVP Release, P0, score: 0.85).
Reasoning:
- Highest priority (P0) with strong positional signal (first in MVP milestone)
- Unblocks 2 downstream features (Feature X, Feature Y)
- You completed its blocker "Foundation" -- high context affinity
- Spec exists with clear success criteria (12 acceptance tests)
- Estimated effort: medium (8 tasks in the plan)
Alternative: Feature B (P1, score: 0.72) -- consider if Feature A's scope is too large for the current time window.
Proceed with Feature A? (y/n/pick another)
Call manage_roadmap with action update to assign the feature:
manage_roadmap({
path: "<project-root>",
action: "update",
feature: "<feature-name>",
assignee: "<currentUser>"
})
Assignee field with assignment history trackingharness.config.jsonDetermine the transition target:
spec field (non-null): transition to harness:autopilotspec: transition to harness:brainstormingPresent the transition to the human via emit_interaction:
emit_interaction({
path: "<project-root>",
type: "transition",
transition: {
completedPhase: "roadmap-pilot",
suggestedNext: "<brainstorming|autopilot>",
reason: "Feature '<name>' assigned and ready for <brainstorming|execution>",
artifacts: ["docs/roadmap.md"],
requiresConfirmation: true,
summary: "Assigned '<name>' to <user>. <Spec exists -- ready for autopilot|No spec -- needs brainstorming first>.",
qualityGate: {
checks: [
{ "name": "roadmap-parsed", "passed": true },
{ "name": "candidate-scored", "passed": true },
{ "name": "human-confirmed", "passed": true },
{ "name": "assignment-written", "passed": true }
],
allPassed: true
}
}
})
Run harness validate.
parseRoadmap / serializeRoadmap -- Parse and write docs/roadmap.md. Import from @harness-engineering/core.scoreRoadmapCandidates -- Core scoring algorithm. Import from @harness-engineering/core. Takes a Roadmap and optional PilotScoringOptions (currentUser for affinity).manage_roadmap update -- Used for assignment. Supports assignee field which delegates to assignFeature internally, handles history tracking, and automatically triggers external sync (GitHub Issues).emit_interaction -- Used for the skill transition at the end. Transitions to harness:brainstorming (no spec) or harness:autopilot (spec exists).harness validate -- Run after assignment is written.harness validate passes after all changes| Rationalization | Reality |
|---|---|
| "The top-scored candidate is obviously correct, so I can assign it without asking the human" | The Iron Law: never assign or transition without the human confirming the recommendation first. |
| "Affinity data is not available so the scoring is degraded -- I should just pick the first planned item" | Proceed without affinity scoring by zeroing out the affinity weight. Position and dependents signals still produce meaningful rankings. |
| "The feature has no spec, but I can skip brainstorming and jump straight to planning since the summary is clear enough" | No spec routes to brainstorming, spec exists routes to autopilot. A one-line roadmap summary is not a spec. |
Context: A roadmap with 3 milestones, 8 features. 2 are in-progress, 1 is done, 2 are blocked, 3 are planned/backlog and unblocked. User is @cwarner who completed "Core Library Design".
Phase 1: SCAN
ROADMAP PILOT -- Candidate Scoring
Top candidates:
# Feature Milestone Priority Score Breakdown
1. Graph Connector MVP Release P2 0.78 pos:0.8 dep:0.6 aff:1.0
2. Performance Baselines Q3 Hardening -- 0.45 pos:0.5 dep:0.3 aff:0.0
3. Push Notifications Backlog -- 0.30 pos:0.2 dep:0.2 aff:0.5
Phase 2: RECOMMEND
I recommend Graph Connector (MVP Release, P2, score: 0.78).
Reasoning:
- Only prioritized item among candidates (P2)
- You completed its blocker "Core Library Design" -- maximum affinity bonus
- Unblocks "API Integration" downstream
- Spec exists at docs/changes/graph-connector/proposal.md
Proceed? (y/n/pick another)
Human confirms y.
Phase 4: ASSIGN
manage_roadmap update: Graph Connector assignee -> @cwarner
History: +1 record (assigned, 2026-04-02)
Roadmap updated: docs/roadmap.md
External sync: github:harness-eng/harness#43 assigned (automatic)
Transitioning to harness:autopilot (spec exists)...
docs/roadmap.md does not exist or fails to parse, stop with an error.harness-roadmap --add.harness-roadmap --sync.