vibe-forge 0.4.0 → 0.8.2

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 (129) hide show
  1. package/.claude/commands/clear-attention.md +63 -63
  2. package/.claude/commands/compact-context.md +52 -0
  3. package/.claude/commands/configure-vcs.md +5 -5
  4. package/.claude/commands/forge.md +50 -3
  5. package/.claude/commands/need-help.md +77 -77
  6. package/.claude/commands/update-status.md +64 -64
  7. package/.claude/commands/worker-loop.md +106 -106
  8. package/.claude/hooks/worker-loop.js +37 -4
  9. package/.claude/scripts/setup-worker-loop.sh +45 -45
  10. package/.claude/settings.json +89 -0
  11. package/LICENSE +21 -21
  12. package/README.md +211 -232
  13. package/agents/aegis/personality.md +35 -1
  14. package/agents/anvil/personality.md +39 -1
  15. package/agents/architect/personality.md +26 -0
  16. package/agents/crucible/personality.md +54 -1
  17. package/agents/crucible-x/personality.md +210 -0
  18. package/agents/ember/personality.md +29 -1
  19. package/agents/flux/personality.md +248 -0
  20. package/agents/furnace/personality.md +52 -1
  21. package/agents/herald/personality.md +3 -1
  22. package/agents/loki/personality.md +108 -0
  23. package/agents/oracle/personality.md +284 -0
  24. package/agents/pixel/personality.md +140 -0
  25. package/agents/planning-hub/personality.md +222 -0
  26. package/agents/scribe/personality.md +3 -1
  27. package/agents/slag/personality.md +268 -0
  28. package/agents/{sentinel → temper}/personality.md +85 -9
  29. package/bin/cli.js +77 -30
  30. package/bin/dashboard/api/agents.js +333 -0
  31. package/bin/dashboard/api/dispatch.js +507 -0
  32. package/bin/dashboard/api/tasks.js +416 -0
  33. package/bin/dashboard/public/assets/index-BpHfsx1r.js +2 -0
  34. package/bin/dashboard/public/assets/index-QODv4Zn9.css +1 -0
  35. package/bin/dashboard/public/index.html +14 -0
  36. package/bin/dashboard/server.js +645 -0
  37. package/bin/forge-daemon.sh +176 -550
  38. package/bin/forge-setup.sh +28 -11
  39. package/bin/forge-spawn.sh +5 -5
  40. package/bin/forge.cmd +83 -83
  41. package/bin/forge.sh +210 -31
  42. package/config/agent-manifest.yaml +237 -243
  43. package/config/agents.json +207 -132
  44. package/config/task-types.yaml +111 -106
  45. package/context/agent-overrides/README.md +41 -0
  46. package/context/architecture.md +42 -0
  47. package/context/modern-conventions.md +129 -129
  48. package/docs/agents.md +473 -409
  49. package/docs/architecture.md +194 -162
  50. package/docs/commands.md +451 -388
  51. package/docs/security.md +195 -144
  52. package/package.json +38 -11
  53. package/src/lib/check-aliases.js +50 -0
  54. package/{bin → src}/lib/colors.sh +2 -1
  55. package/src/lib/config.sh +347 -0
  56. package/{bin → src}/lib/constants.sh +48 -13
  57. package/src/lib/daemon/budgets.sh +107 -0
  58. package/src/lib/daemon/dependencies.sh +146 -0
  59. package/src/lib/daemon/display.sh +128 -0
  60. package/src/lib/daemon/notifications.sh +273 -0
  61. package/src/lib/daemon/routing.sh +93 -0
  62. package/src/lib/daemon/state.sh +163 -0
  63. package/src/lib/daemon/sync.sh +103 -0
  64. package/{bin → src}/lib/database.sh +52 -0
  65. package/src/lib/frontmatter.js +106 -0
  66. package/src/lib/heimdall-setup.js +113 -0
  67. package/src/lib/heimdall.js +265 -0
  68. package/src/lib/index.sh +25 -0
  69. package/{bin → src}/lib/json.sh +7 -1
  70. package/{bin → src}/lib/terminal.js +7 -1
  71. package/.claude/settings.local.json +0 -33
  72. package/agents/forge-master/capabilities.md +0 -144
  73. package/agents/forge-master/context-template.md +0 -128
  74. package/agents/forge-master/personality.md +0 -138
  75. package/bin/lib/config.sh +0 -313
  76. package/config/task-template.md +0 -87
  77. package/context/forge-state.yaml +0 -19
  78. package/docs/TODO.md +0 -150
  79. package/docs/getting-started.md +0 -243
  80. package/docs/npm-publishing.md +0 -95
  81. package/docs/workflows/README.md +0 -32
  82. package/docs/workflows/azure-devops.md +0 -108
  83. package/docs/workflows/bitbucket.md +0 -104
  84. package/docs/workflows/git-only.md +0 -130
  85. package/docs/workflows/gitea.md +0 -168
  86. package/docs/workflows/github.md +0 -103
  87. package/docs/workflows/gitlab.md +0 -105
  88. package/docs/workflows.md +0 -454
  89. package/tasks/completed/ARCH-001-duplicate-agent-config.md +0 -121
  90. package/tasks/completed/ARCH-002-mixed-bash-node-implementation.md +0 -88
  91. package/tasks/completed/ARCH-003-worker-loop-hook-duplication.md +0 -77
  92. package/tasks/completed/ARCH-009-test-organization.md +0 -78
  93. package/tasks/completed/ARCH-011-jq-vs-nodejs-json.md +0 -94
  94. package/tasks/completed/ARCH-012-tmp-files-in-root.md +0 -71
  95. package/tasks/completed/ARCH-013-exit-code-constants.md +0 -65
  96. package/tasks/completed/ARCH-014-sed-incompatibility.md +0 -96
  97. package/tasks/completed/ARCH-015-docs-todo-tracking.md +0 -83
  98. package/tasks/completed/CLEAN-001.md +0 -38
  99. package/tasks/completed/CLEAN-003.md +0 -47
  100. package/tasks/completed/CLEAN-004.md +0 -56
  101. package/tasks/completed/CLEAN-005.md +0 -75
  102. package/tasks/completed/CLEAN-006.md +0 -47
  103. package/tasks/completed/CLEAN-007.md +0 -34
  104. package/tasks/completed/CLEAN-008.md +0 -49
  105. package/tasks/completed/CLEAN-012.md +0 -58
  106. package/tasks/completed/CLEAN-013.md +0 -45
  107. package/tasks/completed/SEC-001-sql-injection-fix.md +0 -58
  108. package/tasks/completed/SEC-002-notification-injection-fix.md +0 -45
  109. package/tasks/completed/SEC-003-eval-injection-fix.md +0 -54
  110. package/tasks/completed/SEC-004-pid-race-condition-fix.md +0 -49
  111. package/tasks/completed/SEC-005-worker-loop-path-fix.md +0 -51
  112. package/tasks/completed/SEC-006-eval-agent-names.md +0 -55
  113. package/tasks/completed/SEC-007-spawn-escaping.md +0 -67
  114. package/tasks/pending/ARCH-004-git-bash-detection-duplication.md +0 -72
  115. package/tasks/pending/ARCH-005-missing-src-directory.md +0 -95
  116. package/tasks/pending/ARCH-006-task-template-location.md +0 -64
  117. package/tasks/pending/ARCH-007-daemon-monolith.md +0 -91
  118. package/tasks/pending/ARCH-008-forge-master-vs-hub.md +0 -81
  119. package/tasks/pending/ARCH-010-missing-index-files.md +0 -84
  120. package/tasks/pending/CLEAN-002.md +0 -29
  121. package/tasks/pending/CLEAN-009.md +0 -31
  122. package/tasks/pending/CLEAN-010.md +0 -30
  123. package/tasks/pending/CLEAN-011.md +0 -30
  124. package/tasks/pending/CLEAN-014.md +0 -32
  125. package/tasks/review/task-001.md +0 -78
  126. /package/{bin → src}/lib/agents.sh +0 -0
  127. /package/{bin → src}/lib/util.sh +0 -0
  128. /package/{bin → src}/lib/vcs.js +0 -0
  129. /package/{context → templates}/project-context-template.md +0 -0
@@ -1,32 +0,0 @@
1
- ---
2
- id: CLEAN-014
3
- title: "Missing set -e in setup-worker-loop.sh script"
4
- type: code-quality
5
- priority: low
6
- assigned_to: furnace
7
- created_at: 2026-01-15T17:00:00Z
8
- created_by: sentinel-review
9
- ---
10
-
11
- ## Summary
12
- The setup-worker-loop.sh uses `set -euo pipefail` which is good, but other shell scripts in the project use only `set -e`. This inconsistency could lead to different error behavior across scripts.
13
-
14
- ## Affected Files/Lines
15
- - `.claude/scripts/setup-worker-loop.sh:7` - uses `set -euo pipefail`
16
- - `.claude/hooks/worker-loop.sh:16` - uses `set -euo pipefail`
17
- - `bin/forge.sh:22` - uses only `set -e`
18
- - `bin/forge-daemon.sh` - no set statement at top level (relies on sourced libraries)
19
- - `bin/forge-setup.sh:9` - uses only `set -e`
20
- - `bin/forge-spawn.sh:13` - uses only `set -e`
21
-
22
- ## Remediation
23
- Standardize on `set -euo pipefail` for all scripts:
24
- - `-e` - exit on error
25
- - `-u` - treat unset variables as errors
26
- - `-o pipefail` - fail if any command in a pipeline fails
27
-
28
- Or document why different scripts use different settings.
29
-
30
- ## Acceptance Criteria
31
- - [ ] Consistent shell options across all scripts
32
- - [ ] Document rationale if different scripts need different settings
@@ -1,78 +0,0 @@
1
- ---
2
- id: task-001
3
- title: "Create hello utility function"
4
- type: backend
5
- priority: low
6
- status: completed
7
- assigned_to: furnace
8
- blocked_by: []
9
- depends_on: []
10
- created: 2025-01-11T12:00:00Z
11
- updated: 2025-01-11T12:00:00Z
12
- estimated_complexity: trivial
13
- epic: forge-test
14
- story: null
15
- ---
16
-
17
- # Context
18
-
19
- ## Parent Epic
20
- This is a test task to validate the Vibe Forge multi-agent workflow.
21
-
22
- ## Relevant Files
23
- - /src/utils/hello.ts (create: new utility file)
24
-
25
- ## Dependencies
26
- None - this is an independent test task.
27
-
28
- ## Background
29
- We're testing the Forge system. Create a simple utility function that Furnace can implement quickly to prove the workflow works.
30
-
31
- ---
32
-
33
- # Acceptance Criteria
34
-
35
- - [x] Create `/src/utils/hello.ts` with a `greet(name: string)` function
36
- - [x] Function should return `"Hello, {name}! The Forge is working."`
37
- - [x] Export the function properly
38
-
39
- ---
40
-
41
- # Agent Instructions
42
-
43
- **Furnace**: Create a simple TypeScript utility function. This is a test task - keep it minimal.
44
-
45
- **Boundaries:**
46
- - DO modify: `/src/utils/`
47
- - DO NOT modify: anything else
48
-
49
- **On Completion:**
50
- 1. Ensure all acceptance criteria checked
51
- 2. Move this file to `/tasks/completed/`
52
- 3. Include completion summary below
53
-
54
- ---
55
-
56
- # Output Expected
57
-
58
- - [x] File created: `/src/utils/hello.ts`
59
- - [x] Function exported and working
60
- - [x] Completion summary written
61
-
62
- ---
63
-
64
- # Completion Summary
65
-
66
- ```yaml
67
- completed_by: furnace
68
- completed_at: 2025-01-11T12:05:00Z
69
- duration_minutes: 2
70
- files_modified: []
71
- files_created:
72
- - /src/utils/hello.ts
73
- tests_added: 0
74
- tests_passing: 0
75
- notes: "Trivial test task. Created greet() utility with proper TypeScript typing and export."
76
- blockers_encountered: []
77
- ready_for_review: true
78
- ```
File without changes
File without changes
File without changes