create-pmos 0.1.1 → 0.1.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.
- package/README.md +24 -0
- package/package.json +1 -1
- package/payload/KIT-VERSION +1 -1
- package/payload/README.md +5 -0
package/README.md
CHANGED
|
@@ -50,6 +50,30 @@ Next steps in /home/you/my-product:
|
|
|
50
50
|
Do those three lines and setup is over. A fresh kit with zero history is not behind — it is
|
|
51
51
|
exactly where every product starts.
|
|
52
52
|
|
|
53
|
+
### Behind a corporate proxy? (403 on install)
|
|
54
|
+
|
|
55
|
+
On many work laptops, npm goes through a company registry mirror — and a brand-new public package
|
|
56
|
+
gets **403 Forbidden** until it's been vetted (a sandboxed AI session's network proxy can do the
|
|
57
|
+
same). That's your environment being careful, not something broken — and there are three clean
|
|
58
|
+
ways through:
|
|
59
|
+
|
|
60
|
+
1. **Try a plain terminal first** — if the 403 came from inside an AI-session sandbox, the normal
|
|
61
|
+
terminal may just work.
|
|
62
|
+
2. **Ask IT to allowlist `create-pmos`** — a routine request, and an easy one: public npm, MIT,
|
|
63
|
+
zero dependencies, no install scripts, no network code.
|
|
64
|
+
3. **The registry-free install** — the package is just a file, so skip the registry entirely.
|
|
65
|
+
From any allowed network, download
|
|
66
|
+
`https://registry.npmjs.org/create-pmos/-/create-pmos-<version>.tgz`, move it to the work
|
|
67
|
+
machine, then:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
tar xzf create-pmos-*.tgz
|
|
71
|
+
node package/bin/create-pmos.js my-product
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Same result, byte-identical kit, no proxy involved. (Which is fitting — keeping your work
|
|
75
|
+
inside your own boundary is the whole point of this kit.)
|
|
76
|
+
|
|
53
77
|
## Your first conversation
|
|
54
78
|
|
|
55
79
|
Open the folder with your coding agent and talk to it like a colleague — clear about the goal,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-pmos",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Scaffold the PMOS portable kit — run the PMOS product-management workflow (initiative → PRD → eval rubric → contract → build → three gates) entirely inside your own repo, with all state as git-versioned files. No database, no network, no telemetry.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
package/payload/KIT-VERSION
CHANGED
package/payload/README.md
CHANGED
|
@@ -35,6 +35,11 @@ workflow: `initiative/<id>` branches, merge = Acceptance), but GitHub is optiona
|
|
|
35
35
|
existing code there is nothing to ingest: start by seeding `planning/okrs/` (the okr skill) and a
|
|
36
36
|
first right-sized initiative; the product's code grows in the same folder.
|
|
37
37
|
|
|
38
|
+
**403 on `npx` (corporate proxy/mirror)?** Try a plain terminal (not a sandboxed AI session); ask
|
|
39
|
+
IT to allowlist `create-pmos` (zero deps, no install scripts, no network code); or install
|
|
40
|
+
registry-free — download the `.tgz` from `registry.npmjs.org/create-pmos/-/create-pmos-<v>.tgz`
|
|
41
|
+
on any allowed network, then `tar xzf create-pmos-*.tgz && node package/bin/create-pmos.js <dir>`.
|
|
42
|
+
|
|
38
43
|
**No GitHub?** Skip the workflow file and run the gate by hand before merging any initiative
|
|
39
44
|
branch: `HEAD_REF=$(git branch --show-current) bash pmos/scripts/gate-initiative.sh` — green means
|
|
40
45
|
anchored; your local `git merge` is the Acceptance Gate. If the repo later lands on GitHub, copy
|