@reminix/anthropic 0.0.11 → 0.0.12

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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -35,7 +35,7 @@ serve({ agents: [agent], port: 8080 });
35
35
  ```
36
36
 
37
37
  Your agent is now available at:
38
- - `POST /agents/my-claude/execute` - Execute the agent
38
+ - `POST /agents/my-claude/invoke` - Execute the agent
39
39
 
40
40
  ## API Reference
41
41
 
@@ -81,7 +81,7 @@ const request = {
81
81
 
82
82
  ## Endpoint Input/Output Formats
83
83
 
84
- ### POST /agents/{name}/execute
84
+ ### POST /agents/{name}/invoke
85
85
 
86
86
  Execute the agent with a prompt or messages.
87
87
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reminix/anthropic",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "Reminix adapter for Anthropic - serve agents as REST APIs",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -46,16 +46,16 @@
46
46
  "LICENSE"
47
47
  ],
48
48
  "dependencies": {
49
- "@reminix/runtime": "^0.0.11"
49
+ "@reminix/runtime": "^0.0.12"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "@anthropic-ai/sdk": ">=0.71.0"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@anthropic-ai/sdk": "^0.71.2",
56
- "@types/node": "^22.0.0",
56
+ "@types/node": "^25.0.9",
57
57
  "typescript": "^5.9.3",
58
- "vitest": "^3.1.3"
58
+ "vitest": "^4.0.17"
59
59
  },
60
60
  "scripts": {
61
61
  "build": "tsc",