arashi 1.10.1 → 1.11.0

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/README.md CHANGED
@@ -129,6 +129,8 @@ arashi switch --no-default-launch # bypass configured launch mode defa
129
129
 
130
130
  Use the docs site workflow guides when you want setup guidance by outcome instead of by individual command.
131
131
 
132
+ For contributors working on Arashi itself, the project planning workflow in the `arashi-arashi` meta-repo now uses OpenSpec. Older SpecKit-oriented references in legacy planning artifacts are historical context only.
133
+
132
134
  - Hooks and configuration defaults: [arashi.haphazard.dev/workflows/hooks-and-config](https://arashi.haphazard.dev/workflows/hooks-and-config/)
133
135
  - Integrations for VSCode, tmux, and `tmux` plus `sesh`: [arashi.haphazard.dev/workflows/integrations](https://arashi.haphazard.dev/workflows/integrations/)
134
136
  - Agent-assisted and spec-driven change flow: [arashi.haphazard.dev/workflows/agents-and-specs](https://arashi.haphazard.dev/workflows/agents-and-specs/)
@@ -252,8 +254,15 @@ Example config header:
252
254
  "defaults": {
253
255
  "create": {
254
256
  "switch": true,
255
- "launch": true,
256
- "launchMode": "sesh"
257
+ "launch": false
258
+ },
259
+ "editors": {
260
+ "vscode": {
261
+ "create": {
262
+ "launch": true,
263
+ "launchMode": "sesh"
264
+ }
265
+ }
257
266
  },
258
267
  "switch": {
259
268
  "mode": "auto",
@@ -266,7 +275,9 @@ Example config header:
266
275
 
267
276
  `defaults.switch.mode` accepts `"launch"`, `"cd"`, or `"auto"`. `"auto"` prefers parent-shell switching only when shell integration is active.
268
277
 
269
- Defaults precedence for create/switch behavior: explicit CLI flag > opt-out flag > config default > built-in default.
278
+ Use `defaults.create` for terminal `arashi create` behavior. Use `defaults.editors.<host>.create` for editor-specific overrides such as VS Code extension create flows. Supported hosts are `vscode`, `cursor`, and `kiro`.
279
+
280
+ Defaults precedence for create/switch behavior: explicit CLI flag > opt-out flag > config default > built-in default. For editor-hosted `create`, Arashi uses the matching `defaults.editors.<host>.create` override when present and otherwise skips post-create defaults instead of falling back to terminal defaults.
270
281
 
271
282
  ## skills.sh Integration
272
283
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arashi",
3
- "version": "1.10.1",
3
+ "version": "1.11.0",
4
4
  "description": "Git worktree manager for meta-repositories - The eye of the storm for your development workflow",
5
5
  "keywords": [
6
6
  "cli",
@@ -8,6 +8,9 @@
8
8
  "create": {
9
9
  "$ref": "#/definitions/CreateCommandDefaults"
10
10
  },
11
+ "editors": {
12
+ "$ref": "#/definitions/EditorDefaultsConfig"
13
+ },
11
14
  "switch": {
12
15
  "$ref": "#/definitions/SwitchCommandDefaults"
13
16
  }
@@ -93,6 +96,31 @@
93
96
  },
94
97
  "type": "object"
95
98
  },
99
+ "EditorCommandDefaults": {
100
+ "additionalProperties": false,
101
+ "properties": {
102
+ "create": {
103
+ "$ref": "#/definitions/CreateCommandDefaults",
104
+ "description": "Editor-scoped create defaults"
105
+ }
106
+ },
107
+ "type": "object"
108
+ },
109
+ "EditorDefaultsConfig": {
110
+ "additionalProperties": false,
111
+ "properties": {
112
+ "cursor": {
113
+ "$ref": "#/definitions/EditorCommandDefaults"
114
+ },
115
+ "kiro": {
116
+ "$ref": "#/definitions/EditorCommandDefaults"
117
+ },
118
+ "vscode": {
119
+ "$ref": "#/definitions/EditorCommandDefaults"
120
+ }
121
+ },
122
+ "type": "object"
123
+ },
96
124
  "LaunchMode": {
97
125
  "enum": ["auto", "sesh"],
98
126
  "type": "string"