Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion install.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ After the repo is installed, register this repo's `SKILL.md` with the agent you

- **Claude Code**: add an import to `~/.claude/CLAUDE.md` that points at this repo's `SKILL.md`, for example `@~/Developer/browser-harness/SKILL.md`.

This makes new Codex or Claude Code sessions in other folders load the runtime browser harness instructions automatically.
- **Pi**: symlink this repository folder into your Pi global skills directory (`~/.agents/skills/` or `~/.pi/agent/skills/`):

```bash
ln -sf "$PWD" ~/.agents/skills/browser-harness

@cubic-dev-ai cubic-dev-ai Bot Jun 4, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Pi install instruction is inconsistent with documented paths and missing mkdir -p, so it can fail on fresh setups.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At install.md, line 38:

<comment>Pi install instruction is inconsistent with documented paths and missing `mkdir -p`, so it can fail on fresh setups.</comment>

<file context>
@@ -32,7 +32,13 @@ After the repo is installed, register this repo's `SKILL.md` with the agent you
+- **Pi**: symlink this repository folder into your Pi global skills directory (`~/.agents/skills/` or `~/.pi/agent/skills/`):
+
+  ```bash
+  ln -sf "$PWD" ~/.agents/skills/browser-harness
+  ```
+
</file context>
Fix with cubic

```

This makes new Codex, Claude Code, or Pi sessions in other folders load the runtime browser harness instructions automatically.

## Keeping the harness current

Expand Down