@plaited/acp 0.0.1 → 0.1.0-next.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 CHANGED
@@ -42,9 +42,9 @@ console.log(summary.text, summary.completedToolCalls)
42
42
  await client.disconnect()
43
43
  ```
44
44
 
45
- ## Recommended: Use the Bundled Skill
45
+ ## Recommended: Use the Bundled Plugin
46
46
 
47
- This package includes a comprehensive **acp-harness skill** designed for AI-assisted evaluation development. The skill provides:
47
+ This package includes a comprehensive **eval-harness plugin** designed for AI-assisted evaluation development. The plugin provides:
48
48
 
49
49
  - Complete API reference for `createACPClient` and helpers
50
50
  - Harness CLI usage with all options and examples
@@ -53,21 +53,28 @@ This package includes a comprehensive **acp-harness skill** designed for AI-assi
53
53
  - Downstream integration patterns (Braintrust, jq, custom scorers)
54
54
  - Docker execution guidance
55
55
 
56
- ### Install the Skill
56
+ ### Install the Plugin
57
+
58
+ **Claude Code:**
59
+
60
+ ```
61
+ /plugin marketplace add plaited/acp-harness
62
+ ```
63
+
64
+ **Other agents (Gemini CLI, GitHub Copilot, Cursor, OpenCode, Amp, Goose, Factory):**
57
65
 
58
66
  ```bash
59
- # For Claude Code, Cursor, OpenCode, Amp, Goose, or Factory
60
- curl -sSL https://raw.githubusercontent.com/plaited/acp-harness/main/scripts/install-acp.sh | bash
67
+ curl -sSL https://raw.githubusercontent.com/plaited/acp-harness/main/scripts/install.sh | bash
61
68
  ```
62
69
 
63
- Once installed, the skill auto-activates when working on evaluation tasks. Ask your AI agent to help you:
70
+ Once installed, the plugin auto-activates when working on evaluation tasks. Ask your AI agent to help you:
64
71
 
65
72
  - Set up evaluation prompts
66
73
  - Configure the harness CLI
67
74
  - Design scoring pipelines
68
75
  - Integrate with Braintrust or custom analysis tools
69
76
 
70
- The skill contains everything needed to build agent evaluations - use it as your primary reference.
77
+ The plugin contains everything needed to build agent evaluations - use it as your primary reference.
71
78
 
72
79
  ## Development
73
80
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaited/acp",
3
- "version": "0.0.1",
3
+ "version": "0.1.0-next.1",
4
4
  "description": "ACP client and evaluation harness for TypeScript/Bun projects",
5
5
  "license": "ISC",
6
6
  "engines": {
@@ -1,8 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Skill(greeting)",
5
- "Skill(greeting:*)"
6
- ]
7
- }
8
- }