@wipcomputer/wip-repo-init 1.9.14 → 1.9.17

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 +38 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ ###### WIP Computer
2
+
3
+ # Repo Init
4
+
5
+ Scaffold the standard `ai/` directory in any repo. Plans, notes, ideas, dev updates, todos. One command.
6
+
7
+ ## What it does
8
+
9
+ - **New repo:** Creates the full `ai/` directory structure
10
+ - **Existing repo:** Moves old `ai/` contents to `ai/_sort/ai_old/` so you can sort at your own pace
11
+ - Nothing is deleted
12
+
13
+ ## The `ai/` directory
14
+
15
+ ```
16
+ ai/
17
+ plan/ architecture plans, roadmaps
18
+ dev-updates/ what was built, session logs
19
+ todos/
20
+ PUNCHLIST.md blockers to ship
21
+ inboxes/ per-agent action items
22
+ notes/ research, references, raw conversation logs
23
+ ```
24
+
25
+ The `ai/` folder is the development process. It is not part of the published product. Public repos exclude it via deploy-public.sh.
26
+
27
+ ## Usage
28
+
29
+ ```bash
30
+ node tools/wip-repo-init/init.mjs /path/to/repo
31
+ ```
32
+
33
+ ## Interfaces
34
+
35
+ - **CLI**: Run from terminal
36
+ - **Skill**: SKILL.md for agent instructions
37
+
38
+ ## Part of [AI DevOps Toolbox](https://github.com/wipcomputer/wip-ai-devops-toolbox)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-repo-init",
3
- "version": "1.9.14",
3
+ "version": "1.9.17",
4
4
  "description": "Scaffold the standard ai/ directory structure in any repo",
5
5
  "type": "module",
6
6
  "bin": {