@remixhq/claude-plugin 0.1.4 → 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.
@@ -13,7 +13,7 @@
13
13
  "source": {
14
14
  "source": "npm",
15
15
  "package": "@remixhq/claude-plugin",
16
- "version": "^0.1.0"
16
+ "version": "0.1.5"
17
17
  },
18
18
  "homepage": "https://github.com/RemixDotOne/remix-claude-plugin",
19
19
  "repository": "https://github.com/RemixDotOne/remix-claude-plugin",
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "remix",
3
3
  "description": "Remix collaboration workflows for Claude Code",
4
- "version": "0.1.0",
4
+ "version": "0.1.5",
5
5
  "author": {
6
6
  "name": "Remix"
7
7
  },
8
8
  "license": "MIT",
9
+ "homepage": "https://github.com/RemixDotOne/remix-claude-plugin",
9
10
  "repository": "https://github.com/RemixDotOne/remix-claude-plugin",
10
11
  "skills": [
11
12
  "./skills/safe-collab-workflow/SKILL.md",
@@ -32,6 +32,7 @@ When appropriate:
32
32
 
33
33
  - use `remix_collab_init` to bind the current repo
34
34
  - use `remix_collab_remix` to start from an existing app lineage
35
+ - use `remix_collab_checkout` to continue work on an existing app id without creating a fork
35
36
  - use memory summary/search/timeline tools before repo inspection when historical context or reasoning is needed
36
37
  - use the explicit change-step diff tool only after you already know which `changeStepId` matters
37
38
  - use `remix_collab_add` only when a manual changed-turn recording step is explicitly needed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remixhq/claude-plugin",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Claude Code plugin for Remix collaboration workflows",
5
5
  "homepage": "https://github.com/RemixDotOne/remix-claude-plugin",
6
6
  "license": "MIT",
@@ -31,8 +31,8 @@
31
31
  "prepack": "npm run build"
32
32
  },
33
33
  "dependencies": {
34
- "@remixhq/core": "^0.1.6",
35
- "@remixhq/mcp": "^0.1.6"
34
+ "@remixhq/core": "^0.1.7",
35
+ "@remixhq/mcp": "^0.1.7"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/node": "^25.4.0",
@@ -3,32 +3,37 @@ name: init-or-remix
3
3
  description: Use when deciding whether to bind the current repo to Remix or create a new remix checkout from an existing app.
4
4
  ---
5
5
 
6
- # Init Or Remix
6
+ # Init, Remix, Or Checkout
7
7
 
8
- Use this skill when onboarding a repository into Remix or starting work from an existing Remix app lineage.
8
+ Use this skill when onboarding a repository into Remix, starting from an existing Remix app lineage, or checking out an exact existing Remix app.
9
9
 
10
10
  This is the entry-point choice:
11
11
 
12
12
  - use init when the current repository should become the bound Remix repo,
13
- - use remix when work should start from an existing Remix app lineage in a fresh checkout.
13
+ - use remix when work should start from an existing Remix app lineage in a fresh fork checkout,
14
+ - use checkout when the exact existing app should be materialized locally without creating a new fork.
14
15
 
15
16
  Decision rule:
16
17
 
17
18
  - Use `remix_collab_init` when the user wants to bind the current local repository to Remix.
18
19
  - Use `remix_collab_remix` when the user wants a new local checkout forked from an existing Remix app.
20
+ - Use `remix_collab_checkout` when the user wants the exact existing app checked out locally as-is.
19
21
 
20
22
  Recommended sequence:
21
23
 
22
24
  1. If the current repo may already be bound, use `remix_collab_status` first.
23
25
  2. If the task is about the current local repo and it is unbound, prefer `remix_collab_init`.
24
- 3. If the task starts from an existing app id, prefer `remix_collab_remix`.
25
- 4. After init or remix, use `remix_collab_status` in the resulting repo to inspect readiness.
26
+ 3. If the task starts from an existing app id and the user wants a new fork, prefer `remix_collab_remix`.
27
+ 4. If the task starts from an existing app id and the user wants the same app id locally, prefer `remix_collab_checkout`.
28
+ 5. After init, remix, or checkout, use `remix_collab_status` in the resulting repo to inspect readiness.
26
29
 
27
30
  Important note:
28
31
 
29
32
  - `remix_collab_init` is a repo-level, history-preserving bind of the current git repository.
30
33
  - Do not treat init as a subdirectory import workflow.
31
34
  - `remix_collab_remix` creates a new bound checkout in a newly created directory under the provided or current working directory.
35
+ - `remix_collab_checkout` creates a new bound checkout for the exact existing app id without creating a new fork.
32
36
  - Do not treat remix as binding the current repository in place.
33
- - If the user wants to start from an existing Remix app lineage instead, use `remix_collab_remix`.
34
- - After init or remix, the bound repo is eligible for automatic end-of-response turn recording in this plugin setup.
37
+ - If the user wants to start from an existing Remix app lineage with a new fork, use `remix_collab_remix`.
38
+ - If the user wants to continue work on the same existing app id, use `remix_collab_checkout`.
39
+ - After init, remix, or checkout, the bound repo is eligible for automatic end-of-response turn recording in this plugin setup.
@@ -45,7 +45,7 @@ Follow this order:
45
45
 
46
46
  Important rules:
47
47
 
48
- - If the repo is unbound, use `remix_collab_init` for the current repo or `remix_collab_remix` for an existing Remix app lineage.
48
+ - If the repo is unbound, use `remix_collab_init` for the current repo, `remix_collab_remix` for a new fork from an existing app lineage, or `remix_collab_checkout` to materialize an existing app as-is.
49
49
  - In a bound repo, do not use raw git `commit`, `push`, `pull`, `merge`, `rebase`, or `reset` for ordinary Remix collaboration work.
50
50
  - In a bound repo, do not start why/history/failed-attempt questions with raw git `log`, `show`, `blame`, or `diff`; start with Remix memory reads instead.
51
51
  - Do not manually fire per-turn recording calls during ordinary work. The end-of-response hook records one turn once per completed assistant response.