Skip to content

Adding orchestrate plugin#65

Merged
SamSokolin merged 1 commit intomainfrom
ssokolin/orchestrate
May 6, 2026
Merged

Adding orchestrate plugin#65
SamSokolin merged 1 commit intomainfrom
ssokolin/orchestrate

Conversation

@SamSokolin
Copy link
Copy Markdown
Collaborator

@SamSokolin SamSokolin commented May 6, 2026

Note

Medium Risk
Mostly additive, but introduces a sizable new CLI that spawns cloud agents, writes to git/disk state, and optionally integrates with Slack—areas that can fail noisily or mishandle credentials if buggy.

Overview
Adds a new orchestrate plugin to the marketplace and README, plus a full skill + Bun-based CLI for fanning out a goal into parallel Cursor cloud-agent planners/workers/verifiers with structured handoffs/, plan.json/state.json, and recovery semantics.

The new implementation includes JSON schemas, prompt/reference templates, Slack run-thread mirroring (kickoff + per-task status + Andon via reactions), failure/verification parsing, measurement drift checks, and a comprehensive Bun test suite covering these behaviors.

Reviewed by Cursor Bugbot for commit 03192a5. Bugbot is set up for automated code reviews on this repo. Configure here.

Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes using high mode and found 2 potential issues.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 03192a5. Configure here.

Comment thread orchestrate/skills/orchestrate/scripts/cli/task.ts
);

expect(active).toBeNull();
});
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefix match in kickoff dedupe causes false adoption

Medium Severity · Logic Bug

findActiveRootPlanner uses name.startsWith(rootSlug) to match agents, which means a kickoff for slug "dark-mode" would incorrectly adopt an agent named "dark-mode-theme-root" (belonging to slug "dark-mode-theme"). The "allows different slugs to run side by side" test only covers completely dissimilar slugs ("docs-loc" vs "refactor-ui") and misses this prefix-collision case. The match needs to check for the exact ${rootSlug}-root agent name pattern or at least verify a separator follows the slug.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 03192a5. Configure here.

@SamSokolin SamSokolin merged commit f74c335 into main May 6, 2026
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant