arashi 1.10.0 → 1.10.1

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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -125,6 +125,14 @@ arashi switch --cd feature-auth-refresh # parent-shell cd when shell integra
125
125
  arashi switch --no-default-launch # bypass configured launch mode defaults once
126
126
  ```
127
127
 
128
+ ## Workflow Guides
129
+
130
+ Use the docs site workflow guides when you want setup guidance by outcome instead of by individual command.
131
+
132
+ - Hooks and configuration defaults: [arashi.haphazard.dev/workflows/hooks-and-config](https://arashi.haphazard.dev/workflows/hooks-and-config/)
133
+ - Integrations for VSCode, tmux, and `tmux` plus `sesh`: [arashi.haphazard.dev/workflows/integrations](https://arashi.haphazard.dev/workflows/integrations/)
134
+ - Agent-assisted and spec-driven change flow: [arashi.haphazard.dev/workflows/agents-and-specs](https://arashi.haphazard.dev/workflows/agents-and-specs/)
135
+
128
136
  ## Shell Integration
129
137
 
130
138
  Use shell integration when you want `arashi switch` to change the current shell directory instead of only opening a new terminal or editor context.
@@ -275,6 +283,7 @@ Arashi also ships a dedicated `skills.sh` integration package for guided install
275
283
  - Configuration details: [`docs/configuration.md`](./docs/configuration.md)
276
284
  - Clone command details: [`docs/commands/clone.md`](./docs/commands/clone.md)
277
285
  - Hook behavior: [`docs/hooks.md`](./docs/hooks.md)
286
+ - Workflow guides: [https://arashi.haphazard.dev/workflows/](https://arashi.haphazard.dev/workflows/)
278
287
  - Shell integration details: [`docs/commands/shell.md`](./docs/commands/shell.md)
279
288
  - Setup command details: [`docs/commands/setup.md`](./docs/commands/setup.md)
280
289
  - Switch command details: [`docs/commands/switch.md`](./docs/commands/switch.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arashi",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "Git worktree manager for meta-repositories - The eye of the storm for your development workflow",
5
5
  "keywords": [
6
6
  "cli",
@@ -48,7 +48,8 @@
48
48
  "type": "module",
49
49
  "scripts": {
50
50
  "dev": "bun run src/index.ts",
51
- "build": "bun build src/index.ts --compile --minify --sourcemap --outfile bin/arashi.bin",
51
+ "build": "bun build src/index.ts --compile --minify --outfile bin/arashi.bin",
52
+ "build:debug": "bun build src/index.ts --compile --sourcemap --outfile bin/arashi.bin",
52
53
  "build:all": "bun run build:mac && bun run build:linux && bun run build:windows",
53
54
  "build:mac": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile bin/arashi-macos-arm64",
54
55
  "build:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile bin/arashi-linux-x64",