@1mancompany/onemancompany 0.2.7 → 0.2.8

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 (3) hide show
  1. package/README.md +14 -0
  2. package/bin/cli.js +3 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -92,6 +92,20 @@ npx @1mancompany/onemancompany
92
92
 
93
93
  ---
94
94
 
95
+ ## Demos
96
+
97
+ <table>
98
+ <tr>
99
+ <td align="center">
100
+ <b>"Make me a game"</b><br><br>
101
+ <video src="https://github.com/1mancompany/OneManCompany/releases/download/demos/lets-make-a-game.mp4" controls width="100%"></video>
102
+ <br><i>CEO gives one sentence — the team builds a complete game autonomously.</i>
103
+ </td>
104
+ </tr>
105
+ </table>
106
+
107
+ ---
108
+
95
109
  ## How It Works
96
110
 
97
111
  You open a browser. You see a pixel-art office. Your AI employees are at their desks, pretending to look busy.
package/bin/cli.js CHANGED
@@ -310,7 +310,9 @@ ${green("What gets installed automatically:")}
310
310
  info(`Directory ${installDir} exists (not a git repo) — using as-is`);
311
311
  } else {
312
312
  info(`Cloning OneManCompany into ${installDir}...`);
313
- run(`git clone --depth 1 ${REPO_URL} "${installDir}"`);
313
+ // Skip LFS files (demo videos etc.) not needed for running the app
314
+ const cloneEnv = { ...process.env, GIT_LFS_SKIP_SMUDGE: "1" };
315
+ run(`git clone --depth 1 ${REPO_URL} "${installDir}"`, { env: cloneEnv });
314
316
  }
315
317
 
316
318
  // ── Check if already running ─────────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1mancompany/onemancompany",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "The AI Operating System for One-Person Companies",
5
5
  "bin": {
6
6
  "onemancompany": "bin/cli.js"