@os-eco/overstory-cli 0.6.6 → 0.6.8

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 (45) hide show
  1. package/README.md +3 -2
  2. package/agents/coordinator.md +5 -5
  3. package/agents/lead.md +1 -6
  4. package/agents/merger.md +3 -3
  5. package/agents/reviewer.md +2 -2
  6. package/agents/scout.md +3 -3
  7. package/agents/supervisor.md +16 -16
  8. package/package.json +1 -1
  9. package/src/commands/clean.ts +3 -2
  10. package/src/commands/coordinator.test.ts +7 -12
  11. package/src/commands/coordinator.ts +20 -20
  12. package/src/commands/group.ts +6 -5
  13. package/src/commands/hooks.test.ts +1 -1
  14. package/src/commands/hooks.ts +7 -8
  15. package/src/commands/init.test.ts +1 -5
  16. package/src/commands/init.ts +6 -5
  17. package/src/commands/mail.test.ts +6 -6
  18. package/src/commands/mail.ts +8 -7
  19. package/src/commands/merge.ts +2 -1
  20. package/src/commands/monitor.ts +6 -5
  21. package/src/commands/nudge.ts +2 -1
  22. package/src/commands/run.ts +8 -7
  23. package/src/commands/sling.ts +5 -4
  24. package/src/commands/spec.test.ts +10 -8
  25. package/src/commands/spec.ts +3 -2
  26. package/src/commands/status.ts +12 -9
  27. package/src/commands/stop.test.ts +8 -6
  28. package/src/commands/stop.ts +3 -2
  29. package/src/commands/supervisor.ts +8 -7
  30. package/src/commands/worktree.test.ts +6 -5
  31. package/src/commands/worktree.ts +19 -26
  32. package/src/doctor/version.ts +2 -2
  33. package/src/e2e/init-sling-lifecycle.test.ts +1 -5
  34. package/src/index.ts +97 -14
  35. package/src/json.test.ts +72 -0
  36. package/src/json.ts +24 -0
  37. package/src/logging/color.test.ts +127 -0
  38. package/src/logging/color.ts +28 -0
  39. package/src/mulch/client.test.ts +22 -22
  40. package/src/worktree/tmux.test.ts +123 -5
  41. package/src/worktree/tmux.ts +38 -8
  42. package/agents/issue-reviews.md +0 -71
  43. package/agents/pr-reviews.md +0 -60
  44. package/agents/prioritize.md +0 -110
  45. package/agents/release.md +0 -56
package/agents/release.md DELETED
@@ -1,56 +0,0 @@
1
- ## intro
2
-
3
- Prepare a release by updating docs and bumping the version.
4
-
5
- ## Steps
6
-
7
- ### 1. Analyze changes since last release
8
-
9
- - Run `git log --oneline` to find the last version tag/release commit
10
- - Run `git diff --stat <last-release>..HEAD` to see all changed files
11
- - Read the commit messages to understand what was added, fixed, and changed
12
- - Run `bun test` to get the current test count, file count, and expect() count
13
-
14
- ### 2. Determine version bump
15
-
16
- - If the user specified `major`, `minor`, or `patch`, use that
17
- - Default: `patch` if not specified
18
- - Current version is in `package.json` (`"version"` field) and `src/index.ts` (`VERSION` constant)
19
-
20
- ### 3. Bump version in both locations
21
-
22
- - `package.json` — update `"version"` field
23
- - `src/index.ts` — update `const VERSION = "..."` constant
24
-
25
- ### 4. Update CHANGELOG.md
26
-
27
- - Add a new `## [X.Y.Z] - YYYY-MM-DD` section under `## [Unreleased]`
28
- - Categorize changes into `### Added`, `### Fixed`, `### Changed` subsections
29
- - Use sub-headers (####) for grouping related changes (e.g., "New CLI Commands", "Testing")
30
- - Include updated test counts (tests, files, expect() calls)
31
- - Update the comparison links at the bottom of the file:
32
- - `[Unreleased]` link should compare against the new version
33
- - Add a new link for the new version comparing against the previous
34
-
35
- ### 5. Update CLAUDE.md
36
-
37
- - Update command counts if new commands were added
38
- - Add new files to the directory structure listing
39
- - Update any descriptions that changed (e.g., file format migrations)
40
- - Keep the structure consistent with existing entries
41
-
42
- ### 6. Update README.md
43
-
44
- - Update test counts in the Tech Stack and Development sections
45
- - Update command counts in the Project Structure section
46
- - Add new CLI commands/flags to the CLI Reference section
47
- - Update architecture descriptions if features changed
48
- - Add new files to the Project Structure listing
49
-
50
- ### 7. Present summary
51
-
52
- - Show a summary of all changes made
53
- - List the version bump (old -> new)
54
- - Summarize what was documented in the changelog
55
-
56
- Do NOT commit or push. Just make the edits and present the summary.