recreate-fob 1.0.0 → 2.0.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.
Files changed (43) hide show
  1. package/.claude/agents/.gitkeep +0 -0
  2. package/.claude/commands/FOB/.gitkeep +0 -0
  3. package/.claude/commands/FOB/experts/codebase/self-improve.md +191 -0
  4. package/.claude/commands/FOB/init_project.md +135 -0
  5. package/.claude/commands/FOB/iterate_spec.md +59 -0
  6. package/.claude/commands/FOB/plan_project.md +142 -0
  7. package/.claude/skills/.gitkeep +0 -0
  8. package/.codex/agents/.gitkeep +0 -0
  9. package/.codex/commands/.gitkeep +0 -0
  10. package/.codex/commands/FOB/.gitkeep +0 -0
  11. package/.codex/commands/FOB/experts/codebase/self-improve.md +191 -0
  12. package/.codex/commands/FOB/init_project.md +135 -0
  13. package/.codex/commands/FOB/iterate_spec.md +59 -0
  14. package/.codex/commands/FOB/plan_project.md +142 -0
  15. package/.codex/skills/.gitkeep +0 -0
  16. package/.opencode/agents/.gitkeep +0 -0
  17. package/.opencode/commands/.gitkeep +0 -0
  18. package/.opencode/commands/FOB/.gitkeep +0 -0
  19. package/.opencode/commands/FOB/experts/codebase/self-improve.md +191 -0
  20. package/.opencode/commands/FOB/init_project.md +135 -0
  21. package/.opencode/commands/FOB/iterate_spec.md +59 -0
  22. package/.opencode/commands/FOB/plan_project.md +142 -0
  23. package/.opencode/skills/.gitkeep +0 -0
  24. package/forward-operating-base/VERSION +1 -1
  25. package/package.json +1 -1
  26. package/.claude/agents/FOB-planner.md +0 -52
  27. package/.claude/agents/FOB-reviewer.md +0 -61
  28. package/.claude/commands/FOB/help.md +0 -32
  29. package/.claude/commands/FOB/scan.md +0 -48
  30. package/.claude/commands/FOB/status.md +0 -47
  31. package/.claude/skills/FOB-project-setup/skill.md +0 -68
  32. package/.codex/agents/FOB-planner.md +0 -52
  33. package/.codex/agents/FOB-reviewer.md +0 -61
  34. package/.codex/commands/FOB/help.md +0 -32
  35. package/.codex/commands/FOB/scan.md +0 -48
  36. package/.codex/commands/FOB/status.md +0 -47
  37. package/.codex/skills/FOB-project-setup/skill.md +0 -68
  38. package/.opencode/agents/FOB-planner.md +0 -52
  39. package/.opencode/agents/FOB-reviewer.md +0 -61
  40. package/.opencode/commands/FOB/help.md +0 -32
  41. package/.opencode/commands/FOB/scan.md +0 -48
  42. package/.opencode/commands/FOB/status.md +0 -47
  43. package/.opencode/skills/FOB-project-setup/skill.md +0 -68
@@ -1,47 +0,0 @@
1
- ---
2
- name: FOB:status
3
- description: Check Forward Operating Base installation status and version
4
- ---
5
-
6
- # FOB Status
7
-
8
- Check the current Forward Operating Base installation status and version.
9
-
10
- ## Instructions
11
-
12
- 1. Look for `.fob-version` file in the project root to determine installed version
13
- 2. List all FOB-prefixed commands in `.claude/commands/FOB/`
14
- 3. List all FOB-prefixed agents (files matching `FOB-*.md` in `.claude/agents/`)
15
- 4. List all FOB-prefixed skills (directories matching `FOB-*` in `.claude/skills/`)
16
- 5. Check if `forward-operating-base/` shared assets directory exists
17
-
18
- ## Output Format
19
-
20
- Provide a structured status report:
21
-
22
- ```
23
- FOB Status Report
24
- =================
25
- Version: [version from .fob-version or "Not installed"]
26
-
27
- Commands:
28
- - FOB:help
29
- - FOB:status
30
- - FOB:scan
31
-
32
- Agents:
33
- - FOB-planner
34
- - FOB-reviewer
35
-
36
- Skills:
37
- - FOB-project-setup
38
-
39
- Shared Assets: [Installed / Not found]
40
- ```
41
-
42
- ## Troubleshooting
43
-
44
- If FOB is not installed or partially installed, suggest running:
45
- ```bash
46
- npx recreate-fob --local
47
- ```
@@ -1,68 +0,0 @@
1
- ---
2
- name: FOB-project-setup
3
- description: Initialize projects with FOB-standard structure
4
- ---
5
-
6
- # FOB Project Setup Skill
7
-
8
- This skill helps initialize new projects with a standardized FOB structure and configuration.
9
-
10
- ## Trigger
11
-
12
- Activated by mentioning "FOB setup", "FOB init", or "initialize FOB".
13
-
14
- ## Process
15
-
16
- ### 1. Analyze Project Type
17
-
18
- First, detect the project type and existing configuration:
19
- - Check for package.json (Node.js)
20
- - Check for requirements.txt or pyproject.toml (Python)
21
- - Check for go.mod (Go)
22
- - Check for Cargo.toml (Rust)
23
- - Look for existing .claude/, .opencode/, .codex/ directories
24
-
25
- ### 2. Create Structure
26
-
27
- Based on the project type, create appropriate directories:
28
-
29
- ```
30
- project/
31
- ├── .claude/
32
- │ ├── commands/
33
- │ │ └── [project-specific commands]
34
- │ └── agents/
35
- │ └── [project-specific agents]
36
- └── forward-operating-base/ (if not already present)
37
- └── [shared assets]
38
- ```
39
-
40
- ### 3. Configure Integration
41
-
42
- - Create or update @claude.md with project context
43
- - Add project-specific commands based on detected framework
44
- - Configure any relevant hooks
45
-
46
- ## Output
47
-
48
- After setup, provide a summary:
49
-
50
- ```
51
- FOB Project Setup Complete
52
- ==========================
53
-
54
- Created:
55
- - .claude/commands/
56
- - .claude/agents/
57
-
58
- Detected: [project type]
59
-
60
- Next Steps:
61
- 1. Run /FOB:help to see available commands
62
- 2. Create project-specific commands in .claude/commands/
63
- 3. Add project context to @claude.md
64
- ```
65
-
66
- ## Templates
67
-
68
- Reference: @~/forward-operating-base/templates/project.md