@plaited/acp 0.2.0 → 0.2.1
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/README.md +11 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,14 +57,22 @@ This package includes a comprehensive **eval-harness plugin** designed for AI-as
|
|
|
57
57
|
|
|
58
58
|
**Claude Code:**
|
|
59
59
|
|
|
60
|
+
```bash
|
|
61
|
+
claude plugins add github:plaited/marketplace
|
|
60
62
|
```
|
|
61
|
-
|
|
63
|
+
|
|
64
|
+
Or install directly:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
claude plugins add github:plaited/acp-harness/.claude
|
|
62
68
|
```
|
|
63
69
|
|
|
64
|
-
**Other
|
|
70
|
+
**Other AI coding agents:**
|
|
65
71
|
|
|
66
72
|
```bash
|
|
67
|
-
curl -
|
|
73
|
+
curl -fsSL https://raw.githubusercontent.com/plaited/marketplace/main/install.sh | bash -s -- --agent <agent-name> --plugin acp-harness
|
|
74
|
+
|
|
75
|
+
Supported agents: gemini, copilot, cursor, opencode, amp, goose, factory
|
|
68
76
|
```
|
|
69
77
|
|
|
70
78
|
Once installed, the plugin auto-activates when working on evaluation tasks. Ask your AI agent to help you:
|