vibe-forge 0.8.1 → 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 (51) hide show
  1. package/.claude/commands/configure-vcs.md +102 -102
  2. package/.claude/commands/forge.md +218 -218
  3. package/.claude/hooks/worker-loop.js +220 -217
  4. package/.claude/settings.json +89 -89
  5. package/README.md +149 -191
  6. package/agents/aegis/personality.md +303 -303
  7. package/agents/anvil/personality.md +278 -278
  8. package/agents/architect/personality.md +260 -260
  9. package/agents/crucible/personality.md +362 -362
  10. package/agents/crucible-x/personality.md +210 -210
  11. package/agents/ember/personality.md +293 -293
  12. package/agents/flux/personality.md +248 -248
  13. package/agents/furnace/personality.md +342 -342
  14. package/agents/herald/personality.md +249 -249
  15. package/agents/oracle/personality.md +284 -284
  16. package/agents/pixel/personality.md +140 -140
  17. package/agents/planning-hub/personality.md +473 -473
  18. package/agents/scribe/personality.md +253 -253
  19. package/agents/slag/personality.md +268 -268
  20. package/agents/temper/personality.md +270 -270
  21. package/bin/cli.js +372 -372
  22. package/bin/forge-daemon.sh +477 -477
  23. package/bin/forge-setup.sh +662 -661
  24. package/bin/forge-spawn.sh +164 -164
  25. package/bin/forge.sh +566 -566
  26. package/docs/commands.md +8 -8
  27. package/package.json +77 -77
  28. package/{bin → src}/lib/agents.sh +177 -177
  29. package/{bin → src}/lib/check-aliases.js +50 -50
  30. package/{bin → src}/lib/colors.sh +45 -44
  31. package/{bin → src}/lib/config.sh +347 -347
  32. package/{bin → src}/lib/constants.sh +241 -241
  33. package/{bin → src}/lib/daemon/budgets.sh +107 -107
  34. package/{bin → src}/lib/daemon/dependencies.sh +146 -146
  35. package/{bin → src}/lib/daemon/display.sh +128 -128
  36. package/{bin → src}/lib/daemon/notifications.sh +273 -273
  37. package/{bin → src}/lib/daemon/routing.sh +93 -93
  38. package/{bin → src}/lib/daemon/state.sh +163 -163
  39. package/{bin → src}/lib/daemon/sync.sh +103 -103
  40. package/{bin → src}/lib/database.sh +357 -357
  41. package/{bin → src}/lib/frontmatter.js +106 -106
  42. package/{bin → src}/lib/heimdall-setup.js +113 -113
  43. package/{bin → src}/lib/heimdall.js +265 -265
  44. package/src/lib/index.sh +25 -0
  45. package/{bin → src}/lib/json.sh +264 -264
  46. package/{bin → src}/lib/terminal.js +452 -452
  47. package/{bin → src}/lib/util.sh +126 -126
  48. package/{bin → src}/lib/vcs.js +349 -349
  49. package/{context → templates}/project-context-template.md +122 -122
  50. package/config/task-template.md +0 -159
  51. package/config/templates/handoff-template.md +0 -40
@@ -1,44 +1,45 @@
1
- #!/usr/bin/env bash
2
- #
3
- # Vibe Forge - Shared Color Definitions and Logging
4
- # Source this file in other scripts: source "$SCRIPT_DIR/lib/colors.sh"
5
- #
6
-
7
- # Colors (only if terminal supports them)
8
- if [[ -t 1 ]]; then
9
- RED='\033[0;31m'
10
- GREEN='\033[0;32m'
11
- YELLOW='\033[1;33m'
12
- BLUE='\033[0;34m'
13
- CYAN='\033[0;36m'
14
- NC='\033[0m'
15
- else
16
- RED=''
17
- GREEN=''
18
- YELLOW=''
19
- BLUE=''
20
- CYAN=''
21
- NC=''
22
- fi
23
-
24
- # Logging functions
25
- log_error() {
26
- echo -e "${RED}Error: $1${NC}" >&2
27
- }
28
-
29
- log_success() {
30
- echo -e "${GREEN}✓ $1${NC}"
31
- }
32
-
33
- log_info() {
34
- echo -e "${BLUE}ℹ $1${NC}"
35
- }
36
-
37
- log_warn() {
38
- echo -e "${YELLOW}⚠ $1${NC}"
39
- }
40
-
41
- log_header() {
42
- echo -e "${YELLOW}$1${NC}"
43
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
44
- }
1
+ #!/usr/bin/env bash
2
+ #
3
+ # Vibe Forge - Shared Color Definitions and Logging
4
+ # Source this file in other scripts: source "$LIB_DIR/colors.sh"
5
+ # NOTE: JavaScript equivalent exists in bin/cli.js:26-33. Keep in sync.
6
+ #
7
+
8
+ # Colors (only if terminal supports them)
9
+ if [[ -t 1 ]]; then
10
+ RED='\033[0;31m'
11
+ GREEN='\033[0;32m'
12
+ YELLOW='\033[1;33m'
13
+ BLUE='\033[0;34m'
14
+ CYAN='\033[0;36m'
15
+ NC='\033[0m'
16
+ else
17
+ RED=''
18
+ GREEN=''
19
+ YELLOW=''
20
+ BLUE=''
21
+ CYAN=''
22
+ NC=''
23
+ fi
24
+
25
+ # Logging functions
26
+ log_error() {
27
+ echo -e "${RED}Error: $1${NC}" >&2
28
+ }
29
+
30
+ log_success() {
31
+ echo -e "${GREEN}✓ $1${NC}"
32
+ }
33
+
34
+ log_info() {
35
+ echo -e "${BLUE}ℹ $1${NC}"
36
+ }
37
+
38
+ log_warn() {
39
+ echo -e "${YELLOW}⚠ $1${NC}"
40
+ }
41
+
42
+ log_header() {
43
+ echo -e "${YELLOW}$1${NC}"
44
+ echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
45
+ }