@@ -39,24 +39,28 @@ merge, change visibility, or place credentials in documentation.
3939
4040## Quick start
4141
42- ### 1. Install with Codex's built-in Skill Installer
42+ ### 1. Install project-locally
4343
44- Ask Codex:
44+ ``` bash
45+ DISABLE_TELEMETRY=1 npx skills add JNHFlow21/open-source-launch \
46+ --skill open-source-launch \
47+ --agent codex \
48+ --yes
49+ ```
50+
51+ This verified route installs the Skill into the current project's
52+ ` .agents/skills/open-source-launch/ ` directory. ` DISABLE_TELEMETRY=1 ` opts out
53+ of the installer CLI's anonymous telemetry; Open Source Launch itself has no
54+ telemetry.
55+
56+ Alternatively, ask Codex's built-in Skill Installer:
4557
4658``` text
4759Use $skill-installer to install open-source-launch from
4860https://github.com/JNHFlow21/open-source-launch/tree/main/skills/open-source-launch
4961```
5062
51- Or run the same installer helper directly:
52-
53- ``` bash
54- python3 " ${CODEX_HOME:- $HOME / .codex} /skills/.system/skill-installer/scripts/install-skill-from-github.py" \
55- --repo JNHFlow21/open-source-launch \
56- --path skills/open-source-launch
57- ```
58-
59- Start a new Codex turn after installation so the Skill can be discovered.
63+ Start a new Codex turn after either route so the Skill can be discovered.
6064
6165### 2. Run a read-only launch audit
6266
@@ -180,6 +184,7 @@ the public README URL never contains a long-lived token.
180184## Requirements and boundaries
181185
182186- Designed and verified for Codex Skills; other ` SKILL.md ` -compatible agents may work but are not part of the verified support claim.
187+ - Node.js with ` npx ` is required only for the canonical project-local install route; the Skill runtime does not depend on Node.js.
183188- Python 3.10+ is required only for the deterministic helper scripts.
184189- ` git ` is required for tracked-file and working-tree evidence.
185190- ` gh ` , authenticated owner access, and Gitleaks are optional and used only for the corresponding GitHub/secret-history gates.
0 commit comments