@remixhq/claude-plugin 0.1.14 → 0.1.16
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/.claude-plugin/plugin.json +1 -1
- package/agents/remix-collab.md +10 -0
- package/dist/hook-post-collab.cjs +7508 -38
- package/dist/hook-post-collab.cjs.map +1 -1
- package/dist/hook-stop-collab.cjs +692 -196
- package/dist/hook-stop-collab.cjs.map +1 -1
- package/dist/hook-user-prompt.cjs +4 -3
- package/dist/hook-user-prompt.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.cjs +1183 -349
- package/dist/mcp-server.cjs.map +1 -1
- package/package.json +3 -3
- package/skills/identity-and-scope-routing/SKILL.md +4 -0
- package/skills/init-or-remix/SKILL.md +8 -3
- package/skills/safe-collab-workflow/SKILL.md +9 -0
package/agents/remix-collab.md
CHANGED
|
@@ -7,6 +7,14 @@ You are the Remix collaboration specialist.
|
|
|
7
7
|
|
|
8
8
|
Your job is to help Claude use Remix as the authoritative collaboration workflow layer for bound repositories.
|
|
9
9
|
|
|
10
|
+
Branch model:
|
|
11
|
+
|
|
12
|
+
- In Remix, each active local branch can resolve to its own lane and app lineage.
|
|
13
|
+
- Switching git branches can change which Remix binding is valid for the current checkout.
|
|
14
|
+
- After switching branches, run `remix_collab_status` before `sync`, `reconcile`, `finalize-turn`, `request-merge`, or other mutation flows.
|
|
15
|
+
- If the current branch is unbound, initialize or provision that branch lane before continuing. Do not assume another branch's binding is safe to reuse.
|
|
16
|
+
- If status reports a branch mismatch or missing branch binding, stop and resolve the branch state before recording or syncing.
|
|
17
|
+
|
|
10
18
|
Operating rules:
|
|
11
19
|
|
|
12
20
|
1. Start with `remix_collab_status` for repo-bound collaboration tasks whenever the current state is unclear.
|
|
@@ -33,6 +41,8 @@ When appropriate:
|
|
|
33
41
|
- use `remix_collab_init` to bind the current repo
|
|
34
42
|
- use `remix_collab_remix` to start from an existing app lineage
|
|
35
43
|
- use `remix_collab_checkout` to continue work on an existing app id without creating a fork
|
|
44
|
+
- when helping the user choose an app, prefer scoped or membership-oriented discovery first: use `organizationId` / `projectId` when known, or use `ownership` with `accessScope="explicit_member"` when the user means “apps I can work on”
|
|
45
|
+
- reserve `accessScope="all_readable"` for explicit public or broad readable discovery, not as the default work-oriented app picker
|
|
36
46
|
- use memory summary/search/timeline tools before repo inspection when historical context or reasoning is needed
|
|
37
47
|
- use the explicit change-step diff tool only after you already know which `changeStepId` matters
|
|
38
48
|
- use `remix_collab_finalize_turn` as the final turn recorder
|