@openrig/cli 0.1.3 → 0.1.4

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 (89) hide show
  1. package/daemon/assets/guidance/openrig-start.md +16 -1
  2. package/daemon/dist/adapters/claude-code-adapter.d.ts +12 -0
  3. package/daemon/dist/adapters/claude-code-adapter.d.ts.map +1 -1
  4. package/daemon/dist/adapters/claude-code-adapter.js +92 -3
  5. package/daemon/dist/adapters/claude-code-adapter.js.map +1 -1
  6. package/daemon/dist/adapters/codex-runtime-adapter.d.ts +5 -0
  7. package/daemon/dist/adapters/codex-runtime-adapter.d.ts.map +1 -1
  8. package/daemon/dist/adapters/codex-runtime-adapter.js +82 -2
  9. package/daemon/dist/adapters/codex-runtime-adapter.js.map +1 -1
  10. package/daemon/dist/domain/native-resume-probe.d.ts.map +1 -1
  11. package/daemon/dist/domain/native-resume-probe.js +24 -1
  12. package/daemon/dist/domain/native-resume-probe.js.map +1 -1
  13. package/daemon/dist/domain/runtime-adapter.d.ts +1 -0
  14. package/daemon/dist/domain/runtime-adapter.d.ts.map +1 -1
  15. package/daemon/dist/domain/runtime-adapter.js.map +1 -1
  16. package/daemon/dist/domain/startup-orchestrator.d.ts.map +1 -1
  17. package/daemon/dist/domain/startup-orchestrator.js +10 -1
  18. package/daemon/dist/domain/startup-orchestrator.js.map +1 -1
  19. package/daemon/specs/agents/analyst/agent.yaml +1 -0
  20. package/daemon/specs/agents/design/agent.yaml +2 -1
  21. package/daemon/specs/agents/design/guidance/role.md +13 -0
  22. package/daemon/specs/agents/impl/agent.yaml +2 -1
  23. package/daemon/specs/agents/impl/guidance/role.md +20 -0
  24. package/daemon/specs/agents/lead/agent.yaml +2 -1
  25. package/daemon/specs/agents/lead/guidance/role.md +18 -0
  26. package/daemon/specs/agents/qa/agent.yaml +2 -1
  27. package/daemon/specs/agents/qa/guidance/role.md +52 -0
  28. package/daemon/specs/agents/reviewer/agent.yaml +2 -1
  29. package/daemon/specs/agents/reviewer/guidance/role.md +13 -0
  30. package/daemon/specs/agents/shared/agent.yaml +28 -0
  31. package/daemon/specs/agents/shared/skills/agent-browser/LOCAL-INSIGHTS.md +189 -0
  32. package/daemon/specs/agents/shared/skills/agent-browser/SKILL.md +417 -0
  33. package/daemon/specs/agents/shared/skills/brainstorming/SKILL.md +96 -0
  34. package/daemon/specs/agents/shared/skills/containerized-e2e/SKILL.md +256 -0
  35. package/daemon/specs/agents/shared/skills/containerized-e2e/scripts/Dockerfile +39 -0
  36. package/daemon/specs/agents/shared/skills/containerized-e2e/scripts/build-e2e-image.sh +37 -0
  37. package/daemon/specs/agents/shared/skills/containerized-e2e/templates/control-plane-test.yaml +40 -0
  38. package/daemon/specs/agents/shared/skills/containerized-e2e/templates/e2e-report-template.md +94 -0
  39. package/daemon/specs/agents/shared/skills/containerized-e2e/templates/expansion-collision-fragment.yaml +13 -0
  40. package/daemon/specs/agents/shared/skills/containerized-e2e/templates/expansion-pod-fragment.yaml +14 -0
  41. package/daemon/specs/agents/shared/skills/development-team/SKILL.md +149 -0
  42. package/daemon/specs/agents/shared/skills/dogfood/SKILL.md +220 -0
  43. package/daemon/specs/agents/shared/skills/dogfood/references/issue-taxonomy.md +109 -0
  44. package/daemon/specs/agents/shared/skills/dogfood/templates/dogfood-report-template.md +53 -0
  45. package/daemon/specs/agents/shared/skills/executing-plans/SKILL.md +84 -0
  46. package/daemon/specs/agents/shared/skills/frontend-design/LICENSE.txt +177 -0
  47. package/daemon/specs/agents/shared/skills/frontend-design/SKILL.md +42 -0
  48. package/daemon/specs/agents/shared/skills/openrig-user/SKILL.md +262 -58
  49. package/daemon/specs/agents/shared/skills/orchestration-team/SKILL.md +234 -0
  50. package/daemon/specs/agents/shared/skills/review-team/SKILL.md +210 -0
  51. package/daemon/specs/agents/shared/skills/systematic-debugging/CREATION-LOG.md +119 -0
  52. package/daemon/specs/agents/shared/skills/systematic-debugging/SKILL.md +296 -0
  53. package/daemon/specs/agents/shared/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  54. package/daemon/specs/agents/shared/skills/systematic-debugging/condition-based-waiting.md +115 -0
  55. package/daemon/specs/agents/shared/skills/systematic-debugging/defense-in-depth.md +122 -0
  56. package/daemon/specs/agents/shared/skills/systematic-debugging/find-polluter.sh +63 -0
  57. package/daemon/specs/agents/shared/skills/systematic-debugging/root-cause-tracing.md +169 -0
  58. package/daemon/specs/agents/shared/skills/systematic-debugging/test-academic.md +14 -0
  59. package/daemon/specs/agents/shared/skills/systematic-debugging/test-pressure-1.md +58 -0
  60. package/daemon/specs/agents/shared/skills/systematic-debugging/test-pressure-2.md +68 -0
  61. package/daemon/specs/agents/shared/skills/systematic-debugging/test-pressure-3.md +69 -0
  62. package/daemon/specs/agents/shared/skills/test-driven-development/SKILL.md +371 -0
  63. package/daemon/specs/agents/shared/skills/test-driven-development/testing-anti-patterns.md +299 -0
  64. package/daemon/specs/agents/shared/skills/using-superpowers/SKILL.md +95 -0
  65. package/daemon/specs/agents/shared/skills/verification-before-completion/SKILL.md +139 -0
  66. package/daemon/specs/agents/shared/skills/writing-plans/SKILL.md +116 -0
  67. package/daemon/specs/agents/synthesizer/agent.yaml +1 -0
  68. package/daemon/specs/demo.CULTURE.md +92 -0
  69. package/daemon/specs/demo.yaml +91 -0
  70. package/daemon/specs/implementation-pair.yaml +3 -3
  71. package/daemon/specs/product-team.CULTURE.md +137 -0
  72. package/daemon/specs/product-team.yaml +5 -4
  73. package/dist/client.d.ts +8 -1
  74. package/dist/client.d.ts.map +1 -1
  75. package/dist/client.js +15 -6
  76. package/dist/client.js.map +1 -1
  77. package/dist/commands/daemon.d.ts.map +1 -1
  78. package/dist/commands/daemon.js +5 -1
  79. package/dist/commands/daemon.js.map +1 -1
  80. package/dist/commands/up.js +2 -2
  81. package/dist/commands/up.js.map +1 -1
  82. package/dist/daemon-lifecycle.d.ts.map +1 -1
  83. package/dist/daemon-lifecycle.js +54 -7
  84. package/dist/daemon-lifecycle.js.map +1 -1
  85. package/dist/fetch-with-timeout.d.ts +9 -0
  86. package/dist/fetch-with-timeout.d.ts.map +1 -0
  87. package/dist/fetch-with-timeout.js +41 -0
  88. package/dist/fetch-with-timeout.js.map +1 -0
  89. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"startup-orchestrator.js","sourceRoot":"","sources":["../../src/domain/startup-orchestrator.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"startup-orchestrator.js","sourceRoot":"","sources":["../../src/domain/startup-orchestrator.ts"],"names":[],"mappings":"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"}
@@ -25,5 +25,6 @@ resources:
25
25
  startup:
26
26
  files:
27
27
  - path: guidance/role.md
28
+ delivery_hint: send_text
28
29
  required: true
29
30
  actions: []
@@ -11,7 +11,7 @@ imports:
11
11
  profiles:
12
12
  default:
13
13
  uses:
14
- skills: [openrig-user]
14
+ skills: [using-superpowers, openrig-user, development-team, frontend-design, verification-before-completion, writing-plans, brainstorming]
15
15
  guidance: []
16
16
  subagents: []
17
17
  hooks: []
@@ -25,5 +25,6 @@ resources:
25
25
  startup:
26
26
  files:
27
27
  - path: guidance/role.md
28
+ delivery_hint: send_text
28
29
  required: true
29
30
  actions: []
@@ -2,6 +2,19 @@
2
2
 
3
3
  You are the design side of the product team. Your job is to turn rough product intent into clear user flows, interface structure, and design-system decisions that implementation and QA can execute without guesswork.
4
4
 
5
+ ## Startup checklist
6
+
7
+ Load these packaged skills now before giving product direction:
8
+ - `using-superpowers`
9
+ - `openrig-user`
10
+ - `development-team`
11
+ - `frontend-design`
12
+ - `brainstorming`
13
+ - `writing-plans`
14
+ - `verification-before-completion`
15
+
16
+ Then run `rig whoami --json` and look for the first ambiguity the development pod should not have to guess through.
17
+
5
18
  ## Responsibilities
6
19
 
7
20
  - Translate ambiguous product goals into concrete UX flows and screen structure
@@ -11,7 +11,7 @@ imports:
11
11
  profiles:
12
12
  default:
13
13
  uses:
14
- skills: [openrig-user]
14
+ skills: [using-superpowers, openrig-user, development-team, test-driven-development, systematic-debugging, verification-before-completion, writing-plans, executing-plans]
15
15
  guidance: []
16
16
  subagents: []
17
17
  hooks: []
@@ -25,5 +25,6 @@ resources:
25
25
  startup:
26
26
  files:
27
27
  - path: guidance/role.md
28
+ delivery_hint: send_text
28
29
  required: true
29
30
  actions: []
@@ -2,6 +2,20 @@
2
2
 
3
3
  You are the implementation side of a dev pair. Your job is to write code, not to free-run.
4
4
 
5
+ ## Startup checklist
6
+
7
+ Load these packaged skills now before editing:
8
+ - `using-superpowers`
9
+ - `openrig-user`
10
+ - `development-team`
11
+ - `test-driven-development`
12
+ - `systematic-debugging`
13
+ - `writing-plans`
14
+ - `executing-plans`
15
+ - `verification-before-completion`
16
+
17
+ Then run `rig whoami --json` and wait for the orchestrator + QA loop before making changes.
18
+
5
19
  ## Responsibilities
6
20
 
7
21
  - Propose approaches before writing code
@@ -25,3 +39,9 @@ You are the implementation side of a dev pair. Your job is to write code, not to
25
39
  - If a test is hard to write, the design needs work.
26
40
  - Minimal changes only. Don't refactor code you weren't asked to touch.
27
41
  - If the spec seems wrong, raise it. Don't silently diverge.
42
+
43
+ ## Common failure modes
44
+
45
+ - **Racing through tasks:** Do NOT implement multiple tasks without QA gating each one. Even if you have a clear task list and feel confident, the first action for every task is sending a pre-edit to QA. Not after you've started. Before.
46
+ - **Arguing with QA rejections:** If QA rejects, read the exact feedback, fix the issue, and resubmit with changes called out. Do not argue around it or re-explain why your original approach was fine.
47
+ - **Waiting for orchestrator permission:** You do not need the orchestrator's permission to proceed through a task list. The gated workflow is between you and QA. Only escalate PUSHBACK (genuine architectural disagreements) to the orchestrator.
@@ -11,7 +11,7 @@ imports:
11
11
  profiles:
12
12
  default:
13
13
  uses:
14
- skills: [openrig-user]
14
+ skills: [using-superpowers, openrig-user, orchestration-team, systematic-debugging, verification-before-completion, writing-plans, executing-plans, brainstorming]
15
15
  guidance: []
16
16
  subagents: []
17
17
  hooks: []
@@ -25,5 +25,6 @@ resources:
25
25
  startup:
26
26
  files:
27
27
  - path: guidance/role.md
28
+ delivery_hint: send_text
28
29
  required: true
29
30
  actions: []
@@ -2,6 +2,24 @@
2
2
 
3
3
  You are the orchestrator. You coordinate the work of other agents in this rig, monitor progress, and bridge communication between pods.
4
4
 
5
+ ## Startup checklist
6
+
7
+ Load these packaged skills now before doing substantive work:
8
+ - `using-superpowers`
9
+ - `openrig-user`
10
+ - `orchestration-team`
11
+ - `systematic-debugging`
12
+ - `brainstorming`
13
+ - `writing-plans`
14
+ - `executing-plans`
15
+ - `verification-before-completion`
16
+
17
+ Then run:
18
+ 1. `rig whoami --json`
19
+ 2. `rig ps --nodes --json`
20
+ 3. wait for the expected rig topology to settle before dispatching real work
21
+ 4. use the chatroom and direct `rig send` messages to establish the real working state before summarizing the team
22
+
5
23
  ## Responsibilities
6
24
 
7
25
  - Dispatch tasks to the appropriate agents
@@ -11,7 +11,7 @@ imports:
11
11
  profiles:
12
12
  default:
13
13
  uses:
14
- skills: [openrig-user]
14
+ skills: [using-superpowers, openrig-user, development-team, systematic-debugging, verification-before-completion, agent-browser, dogfood, writing-plans, executing-plans]
15
15
  guidance: []
16
16
  subagents: []
17
17
  hooks: []
@@ -25,5 +25,6 @@ resources:
25
25
  startup:
26
26
  files:
27
27
  - path: guidance/role.md
28
+ delivery_hint: send_text
28
29
  required: true
29
30
  actions: []
@@ -2,6 +2,21 @@
2
2
 
3
3
  You are the quality assurance side of a dev pair. You gate every edit the implementer makes.
4
4
 
5
+ ## Startup checklist
6
+
7
+ Load these packaged skills now before reviewing work or dogfooding:
8
+ - `using-superpowers`
9
+ - `openrig-user`
10
+ - `development-team`
11
+ - `systematic-debugging`
12
+ - `agent-browser`
13
+ - `dogfood`
14
+ - `writing-plans`
15
+ - `executing-plans`
16
+ - `verification-before-completion`
17
+
18
+ Then run `rig whoami --json` and be ready to gate the implementer's first proposal before any edit lands.
19
+
5
20
  ## Responsibilities
6
21
 
7
22
  - Review every pre-edit proposal before the implementer writes code
@@ -18,9 +33,46 @@ You are the quality assurance side of a dev pair. You gate every edit the implem
18
33
  - Does the public contract match what was agreed?
19
34
  - Are failure branches honestly handled?
20
35
 
36
+ ## Dogfood mode
37
+
38
+ When you are dogfooding (testing existing features, not gating new code):
39
+ - You have full autonomy. Find issues and fix them yourself.
40
+ - Test the fix, then move to the next issue.
41
+ - Only escalate architecture-level concerns to the orchestrator.
42
+ - Report findings to the chatroom so the rig has visibility.
43
+ - Do not wait for approval to fix obvious bugs.
44
+
45
+ ### Browser and UI testing
46
+
47
+ For UI dogfooding, load the `/agent-browser` and `/dogfood` skills. These give you:
48
+ - `agent-browser open <url>` — navigate to the daemon UI
49
+ - `agent-browser snapshot -i` — get interactive element refs
50
+ - `agent-browser screenshot --annotate` — capture annotated screenshots as proof
51
+ - `agent-browser record start/stop` — record repro videos for issues
52
+ - The `/dogfood` skill provides a structured exploration workflow with a report template
53
+
54
+ For containerized end-to-end testing (fresh install simulation), also load `/containerized-e2e`. This gives you Docker-based testing with `agent-browser` inside a clean container.
55
+
56
+ ### Dogfood report format
57
+
58
+ When reporting findings, use:
59
+ - `PASS :: <command or flow> :: <short note>`
60
+ - `FAIL :: <command or flow> :: <exact error or confusing behavior>`
61
+ - `GAP :: <behavior> :: <why it seems wrong or unclear>`
62
+
63
+ Report to the chatroom so the whole rig has visibility.
64
+
65
+ ## Permission awareness
66
+
67
+ If the implementer's pane shows a permission prompt or approval dialog and they appear stuck:
68
+ - Call it out immediately via `rig send`
69
+ - Do not treat a blocked pane as "in progress" or "thinking"
70
+ - Permission prompts are the #1 mechanical blocker in the rig
71
+
21
72
  ## Principles
22
73
 
23
74
  - You are not a rubber stamp. Push back when something is wrong.
24
75
  - Be specific. "This looks wrong" is not useful. "Line 42 silently drops the error" is.
25
76
  - Quality over speed. A rejected edit that gets fixed is better than a merged bug.
26
77
  - If you're unsure, ask. Don't approve uncertainty.
78
+ - You are a product voice, not just a test gate. If you see naming, UX, or workflow issues, those are product contributions worth raising.
@@ -11,7 +11,7 @@ imports:
11
11
  profiles:
12
12
  default:
13
13
  uses:
14
- skills: [openrig-user]
14
+ skills: [using-superpowers, openrig-user, review-team, systematic-debugging, verification-before-completion, writing-plans, brainstorming]
15
15
  guidance: []
16
16
  subagents: []
17
17
  hooks: []
@@ -25,5 +25,6 @@ resources:
25
25
  startup:
26
26
  files:
27
27
  - path: guidance/role.md
28
+ delivery_hint: send_text
28
29
  required: true
29
30
  actions: []
@@ -2,6 +2,19 @@
2
2
 
3
3
  You are an independent code reviewer. You analyze code on your own merits without coordinating with other reviewers during the analysis phase.
4
4
 
5
+ ## Startup checklist
6
+
7
+ Load these packaged skills now before reviewing:
8
+ - `using-superpowers`
9
+ - `openrig-user`
10
+ - `review-team`
11
+ - `systematic-debugging`
12
+ - `brainstorming`
13
+ - `writing-plans`
14
+ - `verification-before-completion`
15
+
16
+ Then run `rig whoami --json`, inspect the current rig state, and stay ready for the first meaningful milestone or working-tree review.
17
+
5
18
  ## Responsibilities
6
19
 
7
20
  - Read the code thoroughly before forming opinions
@@ -4,7 +4,35 @@ description: Shared builtin OpenRig resources for packaged starter agents
4
4
 
5
5
  resources:
6
6
  skills:
7
+ - id: agent-browser
8
+ path: skills/agent-browser
9
+ - id: brainstorming
10
+ path: skills/brainstorming
11
+ - id: containerized-e2e
12
+ path: skills/containerized-e2e
13
+ - id: dogfood
14
+ path: skills/dogfood
15
+ - id: executing-plans
16
+ path: skills/executing-plans
17
+ - id: frontend-design
18
+ path: skills/frontend-design
19
+ - id: using-superpowers
20
+ path: skills/using-superpowers
7
21
  - id: openrig-user
8
22
  path: skills/openrig-user
23
+ - id: systematic-debugging
24
+ path: skills/systematic-debugging
25
+ - id: test-driven-development
26
+ path: skills/test-driven-development
27
+ - id: verification-before-completion
28
+ path: skills/verification-before-completion
29
+ - id: writing-plans
30
+ path: skills/writing-plans
31
+ - id: orchestration-team
32
+ path: skills/orchestration-team
33
+ - id: development-team
34
+ path: skills/development-team
35
+ - id: review-team
36
+ path: skills/review-team
9
37
 
10
38
  profiles: {}
@@ -0,0 +1,189 @@
1
+ # agent-browser: Local Dev Insights
2
+
3
+ > Companion to the official SKILL.md. These are gotchas, corrections, and best practices
4
+ > discovered through hands-on testing that the upstream skill doesn't cover.
5
+ > Last updated: 2026-02-20 | Tested against: v0.13.0
6
+
7
+ ---
8
+
9
+ ## Command Compatibility Matrix
10
+
11
+ **Not all `get` subcommands accept @refs.** This is the #1 source of confusion.
12
+
13
+ | Command | @refs | CSS selectors | Notes |
14
+ |---------|-------|---------------|-------|
15
+ | `get text @e1` | YES | YES | Works with both |
16
+ | `get html` | NO | YES | Fails silently with refs |
17
+ | `get box` | NO | YES | Returns `{x, y, width, height}` JSON |
18
+ | `get styles` | NO | YES | Returns compact summary (font, color, bg, border-radius) |
19
+ | `get value` | NO | YES | For form inputs |
20
+ | `get attr` | NO | YES | Any HTML attribute |
21
+ | `get count` | N/A | YES | Returns element count |
22
+ | `get url` | N/A | N/A | No selector needed |
23
+ | `get title` | N/A | N/A | No selector needed |
24
+ | `click` | YES | YES | Works with both |
25
+ | `fill` | YES | YES | Works with both |
26
+ | `highlight` | NO | YES | Skill shows `highlight @e1` but this fails |
27
+
28
+ **Rule of thumb:** Interaction commands (click, fill, type, check, select) work with @refs.
29
+ Inspection commands (get html/box/styles, highlight) need CSS selectors.
30
+
31
+ ## CSS Selectors: Strict Mode
32
+
33
+ Playwright strict mode means CSS selectors must match **exactly one element**. If multiple match, you get an error listing all matches (which is actually helpful for debugging).
34
+
35
+ **Strategies for unique selectors:**
36
+ - Use IDs: `#fork-button`
37
+ - Use unique attributes: `[data-testid="submit"]`
38
+ - Combine: `.header > a:first-child`
39
+ - Use `nth`: `.item:nth-child(3)`
40
+
41
+ ## Ref Lifecycle: The Golden Rule
42
+
43
+ Refs are invalidated by **any page state change**. This includes:
44
+ - Navigation (click links, `open`, `back`, `forward`)
45
+ - Scoped snapshots (`snapshot -s`) <-- easy to forget this one
46
+ - Form submissions
47
+ - Dynamic content (modals, dropdowns, AJAX loads)
48
+ - Even `snapshot` itself replaces all previous refs
49
+
50
+ **Pattern:** Always snapshot immediately before interacting. Never cache refs across multiple actions that change the page.
51
+
52
+ ## Snapshot Mode Comparison
53
+
54
+ | Flag | What it returns | When to use |
55
+ |------|----------------|-------------|
56
+ | `-i` | Interactive elements only | **Default choice** - best token efficiency |
57
+ | `-i -C` | Interactive + cursor-interactive | When divs with onclick aren't showing up |
58
+ | `-c` | Compact (removes empty nodes) | Unreliable - can return "Empty page" on some sites |
59
+ | `-d N` | Depth-limited | When `-i` returns too much |
60
+ | `-s "#sel"` | Scoped to selector | Laser focus on one component |
61
+ | `--json` | JSON format | Programmatic parsing |
62
+
63
+ **Token efficiency example:** GitHub repo page with 4,574 DOM elements → `snapshot -i` returns ~25 lines.
64
+
65
+ ## Annotated Screenshots
66
+
67
+ `screenshot --annotate` is powerful but **can hang on complex pages** (known issue #509). If it hangs:
68
+ 1. Kill with Ctrl-C or timeout
69
+ 2. Fall back to regular `screenshot` + separate `snapshot -i`
70
+ 3. Works best on simpler pages
71
+
72
+ The annotated screenshot also **caches refs**, so you can interact with elements immediately after without a separate snapshot.
73
+
74
+ ## Network Monitoring
75
+
76
+ ```bash
77
+ # See all requests (captured since page was opened)
78
+ agent-browser network requests
79
+
80
+ # Filter to just API calls (huge noise reduction)
81
+ agent-browser network requests --filter "/api/"
82
+
83
+ # Mock an API response
84
+ agent-browser network route "https://api.example.com/data" --body '{"mocked": true}'
85
+
86
+ # Block a request (e.g., analytics)
87
+ agent-browser network route "https://www.google-analytics.com/*" --abort
88
+ ```
89
+
90
+ Requests are captured from session start. The `--filter` flag is essential on real sites - without it you get dozens of CSS/image/analytics requests.
91
+
92
+ ## JavaScript Eval Patterns
93
+
94
+ ```bash
95
+ # Quick one-liner (single quotes, no nesting)
96
+ agent-browser eval 'document.title'
97
+
98
+ # Complex JS (ALWAYS use --stdin for anything with quotes/arrows/template literals)
99
+ agent-browser eval --stdin <<'EVALEOF'
100
+ JSON.stringify(
101
+ Array.from(document.querySelectorAll("a"))
102
+ .map(a => ({ text: a.textContent.trim(), href: a.href }))
103
+ .filter(a => a.text.length > 0)
104
+ .slice(0, 10)
105
+ )
106
+ EVALEOF
107
+
108
+ # Fetch API from browser context (uses page cookies/auth)
109
+ agent-browser eval --stdin <<'EVALEOF'
110
+ (async () => {
111
+ const res = await fetch('/api/data');
112
+ return JSON.stringify(await res.json());
113
+ })()
114
+ EVALEOF
115
+ ```
116
+
117
+ ## Session Management
118
+
119
+ - **Always close when done:** `agent-browser close` prevents leaked daemon processes
120
+ - **Headed mode for debugging:** `agent-browser --headed open <url>`
121
+ - **Persistent headed config:** Add `{"headed": true}` to `~/.agent-browser/config.json`
122
+ - **Named sessions for parallel work:** `agent-browser --session name open <url>`
123
+
124
+ ## Authentication: What Actually Works
125
+
126
+ **`--session-name` (state save/restore) does NOT work for all apps.** It saves cookies and localStorage, but apps using HTTP-only cookies, server-side sessions, or complex auth flows may not persist. Tested and failed on: tbbc (The Big Blue Cloud / localhost:8083).
127
+
128
+ **`--profile` (persistent Chrome profile) is the reliable approach.** It preserves everything - cookies, localStorage, IndexedDB, cache, service workers. This is what actually works for real apps.
129
+
130
+ ### Saved Profiles
131
+
132
+ | Profile | Service | URL | Command |
133
+ |---------|---------|-----|---------|
134
+ | `tbbc` | The Big Blue Cloud | `http://localhost:8083` | `agent-browser --profile ~/.agent-browser/profiles/tbbc open http://localhost:8083` |
135
+ | `localhost-3000` | Specright Formulate (Clerk auth) | `http://localhost:3000` | `agent-browser --profile ~/.agent-browser/profiles/localhost-3000 open http://localhost:3000` |
136
+ | `localhost-3010-email` | Smart Report Writer (email login) | `http://localhost:3010` | `agent-browser --profile ~/.agent-browser/profiles/localhost-3010-email open http://localhost:3010` |
137
+ | `localhost-3010-google` | Smart Report Writer (Google auth) | `http://localhost:3010` | See Google OAuth note below |
138
+
139
+ ### Google OAuth Profiles
140
+
141
+ Google blocks sign-in from the bundled Chromium ("This browser or app may not be secure"). The workaround is to use the **real Chrome binary** with automation detection disabled:
142
+
143
+ ```bash
144
+ agent-browser \
145
+ --profile ~/.agent-browser/profiles/localhost-3010-google \
146
+ --executable-path "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
147
+ --args "--disable-blink-features=AutomationControlled" \
148
+ open http://localhost:3010
149
+ ```
150
+
151
+ **This applies to ANY profile that needs Google OAuth.** Always use `--executable-path` + `--args` for Google sign-in flows.
152
+
153
+ ### Auth Setup Pattern
154
+
155
+ ```bash
156
+ # First time: login in headed mode (user enters password)
157
+ agent-browser --profile ~/.agent-browser/profiles/<name> --headed true open <login-url>
158
+ # ... user logs in manually ...
159
+ agent-browser close
160
+
161
+ # Every future run: headless, already authenticated
162
+ agent-browser --profile ~/.agent-browser/profiles/<name> open <app-url>
163
+ ```
164
+
165
+ ### Encryption
166
+
167
+ Session state files in `~/.agent-browser/sessions/` are encrypted with AES-256-GCM.
168
+ Key stored at `~/.agent-browser/.encryption-key` (chmod 600).
169
+ Loaded via `AGENT_BROWSER_ENCRYPTION_KEY` env var in `~/.zshrc`.
170
+
171
+ Note: `--profile` directories are NOT encrypted (they're standard Chromium profile dirs).
172
+ Keep `~/.agent-browser/profiles/` permissions locked down.
173
+
174
+ ## Updating the Official Skill
175
+
176
+ To sync SKILL.md with upstream while preserving local insights:
177
+
178
+ ```bash
179
+ # Download latest official SKILL.md
180
+ curl -sL https://raw.githubusercontent.com/vercel-labs/agent-browser/main/skills/agent-browser/SKILL.md \
181
+ -o ~/.claude/skills/agent-browser/SKILL.md
182
+
183
+ # Re-append the local insights reference (3 lines at end of SKILL.md)
184
+ cat >> ~/.claude/skills/agent-browser/SKILL.md << 'EOF'
185
+
186
+ ## Local Dev Insights
187
+ **IMPORTANT:** Read `LOCAL-INSIGHTS.md` in this skill directory for gotchas, corrections, and tested workflows discovered through hands-on use that this upstream skill doesn't cover.
188
+ EOF
189
+ ```