@wipcomputer/wip-ai-devops-toolbox 1.9.20
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.
- package/.license-guard.json +7 -0
- package/.publish-skill.json +4 -0
- package/CHANGELOG.md +1120 -0
- package/CLA.md +19 -0
- package/DEV-GUIDE-GENERAL-PUBLIC.md +882 -0
- package/LICENSE +52 -0
- package/README.md +238 -0
- package/SKILL.md +728 -0
- package/TECHNICAL.md +282 -0
- package/UNIVERSAL-INTERFACE.md +180 -0
- package/_trash/RELEASE-NOTES-v1-8-0.md +29 -0
- package/_trash/RELEASE-NOTES-v1-8-1.md +7 -0
- package/_trash/RELEASE-NOTES-v1-8-2.md +7 -0
- package/_trash/RELEASE-NOTES-v1-9-0.md +37 -0
- package/_trash/RELEASE-NOTES-v1-9-1.md +38 -0
- package/_trash/RELEASE-NOTES-v1-9-10.md +40 -0
- package/_trash/RELEASE-NOTES-v1-9-2.md +40 -0
- package/_trash/RELEASE-NOTES-v1-9-6.md +72 -0
- package/_trash/RELEASE-NOTES-v1-9-7.md +23 -0
- package/_trash/RELEASE-NOTES-v1-9-9.md +75 -0
- package/_trash/guide 2/DEV-GUIDE.md +487 -0
- package/_trash/guide 2/scripts/deploy-public.sh +152 -0
- package/package.json +27 -0
- package/scripts/SKILL-deploy-public.md +61 -0
- package/scripts/SKILL-post-merge-rename.md +47 -0
- package/scripts/deploy-public.sh +264 -0
- package/scripts/post-merge-rename.sh +205 -0
- package/scripts/publish-skill.sh +134 -0
- package/tools/deploy-public/LICENSE +52 -0
- package/tools/deploy-public/README.md +31 -0
- package/tools/deploy-public/SKILL.md +71 -0
- package/tools/deploy-public/deploy-public.sh +264 -0
- package/tools/deploy-public/package.json +9 -0
- package/tools/ldm-jobs/LICENSE +52 -0
- package/tools/ldm-jobs/README.md +46 -0
- package/tools/ldm-jobs/backup.sh +16 -0
- package/tools/ldm-jobs/branch-protect.sh +39 -0
- package/tools/ldm-jobs/crystal-capture.sh +19 -0
- package/tools/ldm-jobs/setup-shell.sh +27 -0
- package/tools/ldm-jobs/visibility-audit.sh +27 -0
- package/tools/post-merge-rename/LICENSE +52 -0
- package/tools/post-merge-rename/README.md +29 -0
- package/tools/post-merge-rename/SKILL.md +57 -0
- package/tools/post-merge-rename/package.json +9 -0
- package/tools/post-merge-rename/post-merge-rename.sh +122 -0
- package/tools/wip-branch-guard/INSTALL.md +41 -0
- package/tools/wip-branch-guard/guard.mjs +259 -0
- package/tools/wip-branch-guard/package.json +11 -0
- package/tools/wip-file-guard/CHANGELOG.md +6 -0
- package/tools/wip-file-guard/LICENSE +52 -0
- package/tools/wip-file-guard/README.md +113 -0
- package/tools/wip-file-guard/REFERENCE.md +86 -0
- package/tools/wip-file-guard/SKILL.md +105 -0
- package/tools/wip-file-guard/guard.mjs +128 -0
- package/tools/wip-file-guard/openclaw.plugin.json +8 -0
- package/tools/wip-file-guard/package.json +27 -0
- package/tools/wip-file-guard/test.sh +119 -0
- package/tools/wip-license-guard/LICENSE +52 -0
- package/tools/wip-license-guard/README.md +32 -0
- package/tools/wip-license-guard/SKILL.md +65 -0
- package/tools/wip-license-guard/cli.mjs +464 -0
- package/tools/wip-license-guard/core.mjs +310 -0
- package/tools/wip-license-guard/hook.mjs +146 -0
- package/tools/wip-license-guard/package.json +15 -0
- package/tools/wip-license-hook/CHANGELOG.md +17 -0
- package/tools/wip-license-hook/LICENSE +52 -0
- package/tools/wip-license-hook/README.md +200 -0
- package/tools/wip-license-hook/SKILL.md +111 -0
- package/tools/wip-license-hook/dist/cli/index.d.ts +15 -0
- package/tools/wip-license-hook/dist/cli/index.js +170 -0
- package/tools/wip-license-hook/dist/cli/index.js.map +1 -0
- package/tools/wip-license-hook/dist/core/detector.d.ts +12 -0
- package/tools/wip-license-hook/dist/core/detector.js +104 -0
- package/tools/wip-license-hook/dist/core/detector.js.map +1 -0
- package/tools/wip-license-hook/dist/core/index.d.ts +4 -0
- package/tools/wip-license-hook/dist/core/index.js +5 -0
- package/tools/wip-license-hook/dist/core/index.js.map +1 -0
- package/tools/wip-license-hook/dist/core/ledger.d.ts +49 -0
- package/tools/wip-license-hook/dist/core/ledger.js +72 -0
- package/tools/wip-license-hook/dist/core/ledger.js.map +1 -0
- package/tools/wip-license-hook/dist/core/reporter.d.ts +14 -0
- package/tools/wip-license-hook/dist/core/reporter.js +227 -0
- package/tools/wip-license-hook/dist/core/reporter.js.map +1 -0
- package/tools/wip-license-hook/dist/core/scanner.d.ts +39 -0
- package/tools/wip-license-hook/dist/core/scanner.js +325 -0
- package/tools/wip-license-hook/dist/core/scanner.js.map +1 -0
- package/tools/wip-license-hook/hooks/pre-pull.sh +55 -0
- package/tools/wip-license-hook/hooks/pre-push.sh +51 -0
- package/tools/wip-license-hook/mcp-server.mjs +119 -0
- package/tools/wip-license-hook/package-lock.json +54 -0
- package/tools/wip-license-hook/package.json +43 -0
- package/tools/wip-license-hook/src/cli/index.ts +189 -0
- package/tools/wip-license-hook/src/core/detector.ts +130 -0
- package/tools/wip-license-hook/src/core/index.ts +4 -0
- package/tools/wip-license-hook/src/core/ledger.ts +116 -0
- package/tools/wip-license-hook/src/core/reporter.ts +255 -0
- package/tools/wip-license-hook/src/core/scanner.ts +367 -0
- package/tools/wip-license-hook/tsconfig.json +16 -0
- package/tools/wip-readme-format/README.md +49 -0
- package/tools/wip-readme-format/SKILL.md +84 -0
- package/tools/wip-readme-format/format.mjs +570 -0
- package/tools/wip-readme-format/package.json +15 -0
- package/tools/wip-release/CHANGELOG.md +42 -0
- package/tools/wip-release/LICENSE +52 -0
- package/tools/wip-release/README.md +45 -0
- package/tools/wip-release/REFERENCE.md +100 -0
- package/tools/wip-release/SKILL.md +139 -0
- package/tools/wip-release/cli.js +161 -0
- package/tools/wip-release/core.mjs +1174 -0
- package/tools/wip-release/mcp-server.mjs +109 -0
- package/tools/wip-release/package.json +36 -0
- package/tools/wip-repo-init/README.md +38 -0
- package/tools/wip-repo-init/SKILL.md +77 -0
- package/tools/wip-repo-init/init.mjs +142 -0
- package/tools/wip-repo-init/package.json +11 -0
- package/tools/wip-repo-permissions-hook/LICENSE +52 -0
- package/tools/wip-repo-permissions-hook/README.md +86 -0
- package/tools/wip-repo-permissions-hook/SKILL.md +73 -0
- package/tools/wip-repo-permissions-hook/cli.js +83 -0
- package/tools/wip-repo-permissions-hook/core.mjs +122 -0
- package/tools/wip-repo-permissions-hook/guard.mjs +64 -0
- package/tools/wip-repo-permissions-hook/mcp-server.mjs +92 -0
- package/tools/wip-repo-permissions-hook/openclaw.plugin.json +8 -0
- package/tools/wip-repo-permissions-hook/package.json +31 -0
- package/tools/wip-repos/LICENSE +52 -0
- package/tools/wip-repos/README.md +77 -0
- package/tools/wip-repos/SKILL.md +80 -0
- package/tools/wip-repos/cli.mjs +176 -0
- package/tools/wip-repos/core.mjs +290 -0
- package/tools/wip-repos/mcp-server.mjs +157 -0
- package/tools/wip-repos/package.json +34 -0
- package/tools/wip-universal-installer/CHANGELOG.md +57 -0
- package/tools/wip-universal-installer/LICENSE +52 -0
- package/tools/wip-universal-installer/README.md +81 -0
- package/tools/wip-universal-installer/REFERENCE.md +122 -0
- package/tools/wip-universal-installer/SKILL.md +87 -0
- package/tools/wip-universal-installer/SPEC.md +180 -0
- package/tools/wip-universal-installer/detect.mjs +130 -0
- package/tools/wip-universal-installer/examples/minimal/README.md +20 -0
- package/tools/wip-universal-installer/examples/minimal/SKILL.md +28 -0
- package/tools/wip-universal-installer/examples/minimal/cli.mjs +4 -0
- package/tools/wip-universal-installer/examples/minimal/core.mjs +8 -0
- package/tools/wip-universal-installer/examples/minimal/mcp-server.mjs +27 -0
- package/tools/wip-universal-installer/examples/minimal/package.json +12 -0
- package/tools/wip-universal-installer/install.js +930 -0
- package/tools/wip-universal-installer/package.json +36 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Dual License: MIT + AGPLv3
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 WIP Computer, Inc.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
1. MIT License (local and personal use)
|
|
7
|
+
---------------------------------------
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
+
in the Software without restriction, including without limitation the rights
|
|
12
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
+
furnished to do so, subject to the following conditions:
|
|
15
|
+
|
|
16
|
+
The above copyright notice and this permission notice shall be included in all
|
|
17
|
+
copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
+
SOFTWARE.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
2. GNU Affero General Public License v3.0 (commercial and cloud use)
|
|
29
|
+
--------------------------------------------------------------------
|
|
30
|
+
|
|
31
|
+
If you run this software as part of a hosted service, cloud platform,
|
|
32
|
+
marketplace listing, or any network-accessible offering for commercial
|
|
33
|
+
purposes, the AGPLv3 terms apply. You must either:
|
|
34
|
+
|
|
35
|
+
a) Release your complete source code under AGPLv3, or
|
|
36
|
+
b) Obtain a commercial license.
|
|
37
|
+
|
|
38
|
+
This program is free software: you can redistribute it and/or modify
|
|
39
|
+
it under the terms of the GNU Affero General Public License as published
|
|
40
|
+
by the Free Software Foundation, either version 3 of the License, or
|
|
41
|
+
(at your option) any later version.
|
|
42
|
+
|
|
43
|
+
This program is distributed in the hope that it will be useful,
|
|
44
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
45
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
46
|
+
GNU Affero General Public License for more details.
|
|
47
|
+
|
|
48
|
+
You should have received a copy of the GNU Affero General Public License
|
|
49
|
+
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
AGPLv3 for personal use is free. Commercial licenses available.
|
package/README.md
ADDED
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
###### WIP Computer
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@wipcomputer/universal-installer) [](https://github.com/wipcomputer/wip-ai-devops-toolbox/blob/main/tools/wip-universal-installer/install.js) [](https://github.com/wipcomputer/wip-ai-devops-toolbox/blob/main/tools/wip-release/mcp-server.mjs) [](https://github.com/wipcomputer/wip-ai-devops-toolbox/blob/main/tools/wip-repo-permissions-hook/openclaw.plugin.json) [](https://github.com/wipcomputer/wip-ai-devops-toolbox/blob/main/SKILL.md) [](https://github.com/wipcomputer/wip-ai-devops-toolbox/blob/main/tools/wip-file-guard/guard.mjs) [](https://github.com/wipcomputer/wip-ai-devops-toolbox/blob/main/tools/wip-universal-installer/SPEC.md)
|
|
4
|
+
|
|
5
|
+
# AI DevOps Toolbox
|
|
6
|
+
|
|
7
|
+
## Want your AI to dev? Here's what's working for us at WIP Computer.
|
|
8
|
+
|
|
9
|
+
Your AI writes code. But does it know how to release it? Check license compliance? Protect your identity files? Sync private repos to public? Follow a real development process?
|
|
10
|
+
|
|
11
|
+
AI DevOps Toolbox is the complete toolkit. Built by a team of humans and AIs shipping real software together.
|
|
12
|
+
|
|
13
|
+
## Teach your AI to use DevOps Toolbox
|
|
14
|
+
|
|
15
|
+
Open your AI and paste this:
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
Read wip.computer/install/wip-ai-devops-toolbox.txt
|
|
19
|
+
|
|
20
|
+
Then explain:
|
|
21
|
+
1. What is AI DevOps Toolbox?
|
|
22
|
+
2. What does it install on my system?
|
|
23
|
+
3. What changes for us? (this AI)
|
|
24
|
+
4. What changes across all my AIs?
|
|
25
|
+
|
|
26
|
+
Check if AI DevOps Toolbox is already installed.
|
|
27
|
+
|
|
28
|
+
If it is, show me what I have and what's new.
|
|
29
|
+
|
|
30
|
+
Then ask:
|
|
31
|
+
- Do you have questions?
|
|
32
|
+
- Want to see a dry run?
|
|
33
|
+
|
|
34
|
+
If I say yes, run: ldm install wipcomputer/wip-ai-devops-toolbox --dry-run
|
|
35
|
+
|
|
36
|
+
Show me exactly what will change. Don't install anything until I say "install".
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Your agent will read the spec, explain everything, and do a dry-run install first so you can see exactly what changes before anything is written to your system.
|
|
40
|
+
|
|
41
|
+
## AI DevOps Toolbox Features
|
|
42
|
+
|
|
43
|
+
Every tool ships as one or more **interfaces:** the ways you and your AI can use it. **CLI** runs in your terminal. **Module** imports into your code. **MCP** connects to any AI that supports Model Context Protocol. **OC Plugin** plugs into the OpenClaw agent platform. **Skill** teaches your AI how to use the tool via a SKILL.md file (works in both Claude Code and OpenClaw). **CC Hook** runs automatically inside Claude Code on specific events.
|
|
44
|
+
|
|
45
|
+
As Andrej Karpathy [said](https://x.com/karpathy/status/2024583544157458452): *"Apps are for people. Tools are for LLMs, and increasingly, LLMs are the ones using software."*
|
|
46
|
+
|
|
47
|
+
### Setup & Onboarding
|
|
48
|
+
|
|
49
|
+
**Universal Installer**
|
|
50
|
+
- Teaches your AI to take anything you build and make it work across every AI interface. You write code in any language. This tool turns it into a CLI, MCP Server, OpenClaw Plugin, Skill, and Claude Code Hook. One command, all six interfaces.
|
|
51
|
+
- Detects what a repo supports and deploys it all. Toolbox mode walks every sub-tool automatically
|
|
52
|
+
- **Interfaces:** CLI, Module, Skill
|
|
53
|
+
- *Stable*
|
|
54
|
+
- [Read more about Universal Installer](https://github.com/wipcomputer/wip-ldm-os/blob/main/docs/universal-installer.md)
|
|
55
|
+
|
|
56
|
+
**Dev Guide**
|
|
57
|
+
- Your team's conventions, baked in. Release process, repo structure, branch protection, the `ai/` folder standard.
|
|
58
|
+
- Best practices for AI-assisted development teams. Covers everything from branching to compliance
|
|
59
|
+
- [Read the Dev Guide](DEV-GUIDE-GENERAL-PUBLIC.md)
|
|
60
|
+
|
|
61
|
+
### Infrastructure
|
|
62
|
+
|
|
63
|
+
**LDM Dev Tools.app**
|
|
64
|
+
- Scheduled automation that runs whether anyone remembers or not. Backup, branch protection audit, visibility audit.
|
|
65
|
+
- macOS .app bundle with Full Disk Access. One app to grant permissions to, one place to add new automation. Scripts can be run standalone without the .app
|
|
66
|
+
- *Stable*
|
|
67
|
+
- [Read more about LDM Dev Tools.app](tools/ldm-jobs/README.md)
|
|
68
|
+
|
|
69
|
+
### Release & Deploy
|
|
70
|
+
|
|
71
|
+
**Release Pipeline**
|
|
72
|
+
- Release software correctly. Version bump, changelog, npm publish, GitHub release. One command, nothing forgotten.
|
|
73
|
+
- SKILL.md sync, release notes on the branch for PR review. Warns when notes are too short or look like changelogs instead of narrative
|
|
74
|
+
- **Interfaces:** CLI, Module, MCP, Skill
|
|
75
|
+
- *Stable*
|
|
76
|
+
- [Read more about Release Pipeline](tools/wip-release/README.md)
|
|
77
|
+
|
|
78
|
+
**Private-to-Public Sync**
|
|
79
|
+
- Publish safely. Syncs private to public, excludes internal files, every time.
|
|
80
|
+
- One script syncs your private working repo to a clean public mirror. Excludes internal `ai/` folders automatically. Creates a PR, merges it, cleans up branches
|
|
81
|
+
- **Interfaces:** CLI, Skill
|
|
82
|
+
- *Stable*
|
|
83
|
+
- [Read more about Private-to-Public Sync](tools/deploy-public/README.md)
|
|
84
|
+
|
|
85
|
+
**Post-Merge Branch Naming**
|
|
86
|
+
- Cleans up after itself. Merged branches get renamed with dates automatically.
|
|
87
|
+
- Renames merged branches with `--merged-YYYY-MM-DD`. Preserves history without cluttering your branch list
|
|
88
|
+
- **Interfaces:** CLI, Skill
|
|
89
|
+
- *Stable*
|
|
90
|
+
- [Read more about Post-Merge Naming](tools/post-merge-rename/README.md)
|
|
91
|
+
|
|
92
|
+
**Skill Publish to Website**
|
|
93
|
+
- After every release, your SKILL.md goes live as plain text on your website. No manual copying. No forgetting.
|
|
94
|
+
- Add `.publish-skill.json` to your repo with `name` and `websiteRepo`. On release, SKILL.md is copied to `yoursite.com/install/{name}.txt` and deployed automatically. Any AI can fetch the URL and get clean, parseable instructions. Like `robots.txt` but for agent install prompts.
|
|
95
|
+
- **Interfaces:** Module (built into Release Pipeline)
|
|
96
|
+
- *Stable*
|
|
97
|
+
|
|
98
|
+
**Make Discoverable in Claude Code**
|
|
99
|
+
- Turn any repo into a Claude Code plugin. Auto-generates `.claude-plugin/plugin.json` from your existing interfaces.
|
|
100
|
+
- Runs during release. Detects what your repo exposes (skills, hooks, MCP servers, agents) and builds the plugin manifest so it shows up in Claude Code's `/plugin` marketplace. No manual config.
|
|
101
|
+
- **Interfaces:** Module (built into Release Pipeline)
|
|
102
|
+
- *Planned*
|
|
103
|
+
|
|
104
|
+
### License, Compliance, and Protection
|
|
105
|
+
|
|
106
|
+
**Identity File Protection**
|
|
107
|
+
- Know what it can never overwrite. CLAUDE.md, SOUL.md, MEMORY.md, SHARED-CONTEXT.md are permanently protected.
|
|
108
|
+
- Blocks destructive edits to protected identity files. Your AI can read them but can't blow them away
|
|
109
|
+
- **Interfaces:** CLI, Module, OpenClaw, Skill, CC Hook
|
|
110
|
+
- *Stable*
|
|
111
|
+
- [Read more about Identity File Protection](tools/wip-file-guard/README.md)
|
|
112
|
+
|
|
113
|
+
**License Guard**
|
|
114
|
+
- Enforce licensing on every commit. Copyright, dual-license, CLA. Checked automatically.
|
|
115
|
+
- Ensures your own repos have correct copyright, license type, and LICENSE files. Interactive first-run setup. Toolbox-aware: checks every sub-tool. Auto-fix mode repairs issues
|
|
116
|
+
- `readme-license` scans all your repos and applies a standard license block to every README in one command. Removes duplicate license sections from sub-tool READMEs
|
|
117
|
+
- **Interfaces:** CLI
|
|
118
|
+
- *Stable*
|
|
119
|
+
- [Read more about License Guard](tools/wip-license-guard/README.md)
|
|
120
|
+
|
|
121
|
+
**License Rug-Pull Detection**
|
|
122
|
+
- Catch license changes in dependencies before they ship.
|
|
123
|
+
- Scans every dependency for license changes. Blocks merges if a license changed upstream. Daily cron scan. Generates a public compliance dashboard
|
|
124
|
+
- **Interfaces:** CLI, Module, MCP, Skill
|
|
125
|
+
- *Stable*
|
|
126
|
+
- [Read more about License Detection](tools/wip-license-hook/README.md)
|
|
127
|
+
|
|
128
|
+
### Repo Management
|
|
129
|
+
|
|
130
|
+
**Repo Visibility Guard**
|
|
131
|
+
- Never accidentally expose a private repo.
|
|
132
|
+
- Blocks repos from going public without a `-private` counterpart. Catches accidental exposure of internal plans, todos, and development context before it happens
|
|
133
|
+
- **Interfaces:** CLI, Module, MCP, OpenClaw, Skill, CC Hook
|
|
134
|
+
- *Stable*
|
|
135
|
+
- [Read more about Repo Visibility Guard](tools/wip-repo-permissions-hook/README.md)
|
|
136
|
+
|
|
137
|
+
**Repo Manifest Reconciler**
|
|
138
|
+
- Know where every repo belongs. One source of truth for folder structure.
|
|
139
|
+
- Like prettier for folder structure. Move folders around all day; on sync, everything snaps back to where the manifest says
|
|
140
|
+
- **Interfaces:** CLI, Module, MCP, Skill
|
|
141
|
+
- *Stable*
|
|
142
|
+
- [Read more about Repo Manifest](tools/wip-repos/README.md)
|
|
143
|
+
|
|
144
|
+
**Repo Init**
|
|
145
|
+
- Scaffold the standard `ai/` directory in any repo. Plans, notes, ideas, dev updates, todos. One command.
|
|
146
|
+
- New repo: creates the full structure. Existing repo: moves old `ai/` contents to `ai/_sort/ai_old/` so you can sort at your own pace. Nothing is deleted.
|
|
147
|
+
- **Interfaces:** CLI, Skill
|
|
148
|
+
- *Stable*
|
|
149
|
+
- [Read more about Repo Init](tools/wip-repo-init/README.md)
|
|
150
|
+
|
|
151
|
+
**README Formatter**
|
|
152
|
+
- Generate or validate READMEs that follow the WIP Computer standard. Badges, title, tagline, "Teach Your AI" block, features, interface coverage table, license.
|
|
153
|
+
- Generates separate section files (README-init-badges.md, README-init-features.md, etc.) so you can edit any section independently. Deploy assembles them into the final README. Same pattern as release notes: staging, review, deploy.
|
|
154
|
+
- **Interfaces:** CLI, Skill
|
|
155
|
+
- *Stable*
|
|
156
|
+
- [Read more about README Formatter](tools/wip-readme-format/README.md)
|
|
157
|
+
|
|
158
|
+
**Forced Git Worktrees**
|
|
159
|
+
- Every repo uses git worktrees. Agents never edit on main. Period.
|
|
160
|
+
- When an agent needs to make changes, it creates a worktree (isolated copy of the repo on its own branch). All edits happen there. Main stays clean. Multiple agents can work on the same repo simultaneously without collisions. When the work is done, it goes through a PR to merge back.
|
|
161
|
+
- **Interfaces:** CLI, CC Hook
|
|
162
|
+
- *Stable*
|
|
163
|
+
|
|
164
|
+
**Branch Guard**
|
|
165
|
+
- Blocks all writes on main. The enforcement layer for forced worktrees.
|
|
166
|
+
- PreToolUse hook that catches Write, Edit, and destructive Bash commands. Resolves the repo from the file path, not the CWD, so it works when Claude Code opens in a different directory. Read-only operations and merge/pull are still allowed on main.
|
|
167
|
+
- **Interfaces:** CC Hook
|
|
168
|
+
- *Stable*
|
|
169
|
+
- [Read more about Branch Guard](tools/wip-branch-guard/INSTALL.md)
|
|
170
|
+
|
|
171
|
+
## Interface Coverage
|
|
172
|
+
|
|
173
|
+
| # | Tool | CLI | Module | MCP | OC Plugin | Skill | CC Hook |
|
|
174
|
+
|---|------|-----|--------|-----|-----------|-------|---------|
|
|
175
|
+
| | **Setup & Onboarding** | | | | | | |
|
|
176
|
+
| 1 | Universal Installer | Y | Y | | | Y | |
|
|
177
|
+
| 2 | Dev Guide | | | | | | |
|
|
178
|
+
| | **Infrastructure** | | | | | | |
|
|
179
|
+
| 3 | LDM Dev Tools.app | | | | | | |
|
|
180
|
+
| | **Release & Deploy** | | | | | | |
|
|
181
|
+
| 4 | Release Pipeline | Y | Y | Y | | Y | |
|
|
182
|
+
| 5 | Private-to-Public Sync | Y | | | | Y | |
|
|
183
|
+
| 6 | Post-Merge Branch Naming | Y | | | | Y | |
|
|
184
|
+
| 7 | Skill Publish to Website | | Y | | | | |
|
|
185
|
+
| 8 | Make Discoverable in CC | | Y | | | | |
|
|
186
|
+
| | **License, Compliance, and Protection** | | | | | | |
|
|
187
|
+
| 9 | Identity File Protection | Y | Y | | Y | Y | Y |
|
|
188
|
+
| 10 | License Guard | Y | | | | | |
|
|
189
|
+
| 11 | License Rug-Pull Detection | Y | Y | Y | | Y | |
|
|
190
|
+
| | **Repo Management** | | | | | | |
|
|
191
|
+
| 12 | Repo Visibility Guard | Y | Y | Y | Y | Y | Y |
|
|
192
|
+
| 13 | Repo Manifest Reconciler | Y | Y | Y | | Y | |
|
|
193
|
+
| 14 | Repo Init | Y | | | | Y | |
|
|
194
|
+
| 15 | README Formatter | Y | | | | Y | |
|
|
195
|
+
| 16 | Forced Git Worktrees | Y | | | | | Y |
|
|
196
|
+
| 17 | Branch Guard | | | | | | Y |
|
|
197
|
+
|
|
198
|
+
## More Info
|
|
199
|
+
|
|
200
|
+
- [Technical Documentation](TECHNICAL.md) ... source code, build steps, architecture
|
|
201
|
+
- [Universal Interface Spec](tools/wip-universal-installer/SPEC.md) ... the seven interfaces every agent-native tool can ship
|
|
202
|
+
- [Dev Guide](DEV-GUIDE-GENERAL-PUBLIC.md) ... best practices for AI-assisted development
|
|
203
|
+
|
|
204
|
+
## Part of LDM OS
|
|
205
|
+
|
|
206
|
+
AI DevOps Toolbox installs into [LDM OS](https://github.com/wipcomputer/wip-ldm-os), the local runtime for AI agents.
|
|
207
|
+
Run `ldm install` to see other components you can add.
|
|
208
|
+
|
|
209
|
+
## License
|
|
210
|
+
|
|
211
|
+
Dual-license model designed to keep tools free while preventing commercial resellers.
|
|
212
|
+
|
|
213
|
+
```
|
|
214
|
+
MIT All CLI tools, MCP servers, skills, and hooks (use anywhere, no restrictions).
|
|
215
|
+
AGPLv3 Commercial redistribution, marketplace listings, or bundling into paid services.
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
AGPLv3 for personal use is free. Commercial licenses available.
|
|
219
|
+
|
|
220
|
+
### Can I use this?
|
|
221
|
+
|
|
222
|
+
**Yes, freely:**
|
|
223
|
+
- Use any tool locally or on your own servers
|
|
224
|
+
- Modify the code for your own projects
|
|
225
|
+
- Include in your internal CI/CD pipelines
|
|
226
|
+
- Fork it and send us feedback via PRs (we'd love that)
|
|
227
|
+
|
|
228
|
+
**Need a commercial license:**
|
|
229
|
+
- Bundle into a product you sell
|
|
230
|
+
- List on a marketplace (VS Code, JetBrains, etc.)
|
|
231
|
+
- Offer as part of a hosted/SaaS platform
|
|
232
|
+
- Redistribute commercially
|
|
233
|
+
|
|
234
|
+
Using these tools to build your own software is fine. Reselling the tools themselves is what requires a commercial license.
|
|
235
|
+
|
|
236
|
+
By submitting a PR, you agree to the [Contributor License Agreement](CLA.md).
|
|
237
|
+
|
|
238
|
+
Built by Parker Todd Brooks, Lēsa (OpenClaw, Claude Opus 4.6), Claude Code (Claude Opus 4.6).
|