runcycles 0.3.0 → 0.3.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 +3 -3
- package/package.json +26 -15
package/README.md
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
[](https://github.com/runcycles/cycles-client-typescript/actions)
|
|
6
6
|
|
|
7
|
-
# Cycles TypeScript Client
|
|
7
|
+
# Cycles TypeScript Client — AI agent budget and action authority SDK
|
|
8
8
|
|
|
9
|
-
TypeScript
|
|
9
|
+
**TypeScript/Node.js SDK for AI agent budget governance — enforce cost limits, tool permissions, and multi-tenant policies before LLM calls or agent actions execute.** Works with OpenAI, Anthropic, MCP servers, OpenAI Agents SDK, LangChain.js, and any Node.js agent runtime.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
Higher-order function and `AsyncLocalStorage`-based API for the [Cycles Protocol](https://github.com/runcycles/cycles-protocol): reserve capacity before expensive operations, execute your work, commit or release — with automatic heartbeats, retries, and typed error handling. Install via `npm install runcycles`.
|
|
12
12
|
|
|
13
13
|
## Requirements
|
|
14
14
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "runcycles",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "TypeScript
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "TypeScript AI agent runtime control — enforce LLM cost limits, action permissions, and audit trails for agents before execution.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "runcycles",
|
|
7
7
|
"repository": {
|
|
@@ -13,21 +13,32 @@
|
|
|
13
13
|
"url": "https://github.com/runcycles/cycles-client-typescript/issues"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
|
-
"
|
|
17
|
-
"budget",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"api-client",
|
|
21
|
-
"ai",
|
|
22
|
-
"llm",
|
|
23
|
-
"runcycles",
|
|
16
|
+
"ai-agent",
|
|
17
|
+
"agent-budget",
|
|
18
|
+
"agent-governance",
|
|
19
|
+
"budget-control",
|
|
24
20
|
"cost-control",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
21
|
+
"cost-enforcement",
|
|
22
|
+
"spending-limit",
|
|
23
|
+
"llm-cost",
|
|
24
|
+
"runtime-authority",
|
|
25
|
+
"action-control",
|
|
26
|
+
"action-authority",
|
|
27
|
+
"audit-trail",
|
|
28
|
+
"audit",
|
|
29
|
+
"compliance",
|
|
30
|
+
"multi-tenant",
|
|
31
|
+
"langchain",
|
|
32
|
+
"langgraph",
|
|
33
|
+
"openai-agents",
|
|
34
|
+
"vercel-ai-sdk",
|
|
35
|
+
"mcp",
|
|
28
36
|
"openai",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
37
|
+
"anthropic",
|
|
38
|
+
"typescript-sdk",
|
|
39
|
+
"nodejs",
|
|
40
|
+
"cycles",
|
|
41
|
+
"runcycles"
|
|
31
42
|
],
|
|
32
43
|
"type": "module",
|
|
33
44
|
"main": "./dist/index.cjs",
|