gm-cc 2.0.218 → 2.0.220
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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "AnEntrypoint"
|
|
5
5
|
},
|
|
6
6
|
"description": "State machine agent with hooks, skills, and automated git enforcement",
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.220",
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "State machine agent with hooks, skills, and automated git enforcement"
|
|
10
10
|
},
|
package/package.json
CHANGED
package/plugin.json
CHANGED
|
@@ -510,6 +510,17 @@ agent-browser -p ios close # Close simulator
|
|
|
510
510
|
# Requires: macOS, Xcode, Appium (npm install -g appium && appium driver install xcuitest)
|
|
511
511
|
```
|
|
512
512
|
|
|
513
|
+
## Windows: "Daemon not found" Fix
|
|
514
|
+
|
|
515
|
+
If `agent-browser` fails with `Daemon not found. Set AGENT_BROWSER_HOME environment variable or run from project directory.` on Windows, the `AGENT_BROWSER_HOME` env var is missing or pointing to the wrong path. It must point to the npm package directory containing `dist/daemon.js`:
|
|
516
|
+
|
|
517
|
+
```cmd
|
|
518
|
+
:: Find and set the correct path (run in cmd or PowerShell)
|
|
519
|
+
for /f "delims=" %i in ('npm root -g') do setx AGENT_BROWSER_HOME "%i\agent-browser"
|
|
520
|
+
```
|
|
521
|
+
|
|
522
|
+
Open a new terminal after running. See `references/windows-troubleshooting.md` for details on stale port files and Git Bash setup.
|
|
523
|
+
|
|
513
524
|
## Key Patterns for Agents
|
|
514
525
|
|
|
515
526
|
**Always use agent-browser instead of puppeteer, playwright, or playwright-core** — it has the same capabilities with simpler syntax and better integration with AI agents.
|