gm-copilot-cli 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.
- package/copilot-profile.md +1 -1
- package/index.html +1 -1
- package/manifest.yml +1 -1
- package/package.json +1 -1
- package/skills/agent-browser/SKILL.md +11 -0
- package/tools.json +1 -1
package/copilot-profile.md
CHANGED
package/index.html
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<script type="module">
|
|
19
19
|
import { createElement as h, applyDiff, Fragment } from "webjsx";
|
|
20
20
|
const PLATFORM_NAME="Copilot CLI",PLATFORM_TYPE="CLI Tool",PLATFORM_TYPE_COLOR="#3b82f6";
|
|
21
|
-
const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.
|
|
21
|
+
const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.220";
|
|
22
22
|
const GITHUB_URL="https://github.com/AnEntrypoint/gm-copilot-cli",BADGE_LABEL="copilot-cli";
|
|
23
23
|
const FEATURES=[{"title":"State Machine","desc":"Immutable PLAN→EXECUTE→EMIT→VERIFY→COMPLETE phases with full mutable tracking"},{"title":"Semantic Search","desc":"Natural language codebase exploration via codesearch skill — no grep needed"},{"title":"Hooks","desc":"Pre-tool, session-start, prompt-submit, and stop hooks for full lifecycle control"},{"title":"Agents","desc":"gm, codesearch, and websearch agents pre-configured and ready to use"},{"title":"MCP Integration","desc":"Model Context Protocol server support built in"},{"title":"Auto-Recovery","desc":"Supervisor hierarchy ensures the system never crashes"}],INSTALL_STEPS=[{"desc":"Install via GitHub CLI","cmd":"gh extension install AnEntrypoint/gm-copilot-cli"},{"desc":"Restart your terminal — activates automatically"}];
|
|
24
24
|
const CURRENT_PLATFORM="gm-copilot-cli";
|
package/manifest.yml
CHANGED
package/package.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.
|