@wipcomputer/deploy-public 1.9.15 → 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 +31 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,31 @@
1
+ ###### WIP Computer
2
+
3
+ # Private-to-Public Sync
4
+
5
+ Publish safely. Syncs your private working repo to a clean public mirror. Excludes internal `ai/` folders automatically.
6
+
7
+ ## What it does
8
+
9
+ - Copies everything except `ai/` and `.git/` to the public repo
10
+ - Creates a PR on the public repo, merges it
11
+ - Syncs GitHub releases from private to public
12
+ - Cleans up deploy branches
13
+
14
+ ## Usage
15
+
16
+ ```bash
17
+ bash deploy-public.sh /path/to/private-repo org/public-repo
18
+ ```
19
+
20
+ ## Requirements
21
+
22
+ - git
23
+ - gh (GitHub CLI)
24
+ - bash
25
+
26
+ ## Interfaces
27
+
28
+ - **CLI**: Shell script
29
+ - **Skill**: SKILL.md for agent instructions
30
+
31
+ ## 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/deploy-public",
3
- "version": "1.9.15",
3
+ "version": "1.9.17",
4
4
  "description": "Private-to-public repo sync. Excludes ai/ folder, creates PR, merges, cleans up branches.",
5
5
  "bin": {
6
6
  "deploy-public": "./deploy-public.sh"