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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +26 -15
package/README.md CHANGED
@@ -4,11 +4,11 @@
4
4
  [![License](https://img.shields.io/badge/license-Apache%202.0-blue)](LICENSE)
5
5
  [![Coverage](https://img.shields.io/badge/coverage-98%25-brightgreen)](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 client for the [Cycles](https://runcycles.io) budget-management protocolgovern spend on AI calls, API usage, and any metered resource.
9
+ **TypeScript/Node.js SDK for AI agent budget governanceenforce 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
- Cycles lets you set budgets, reserve capacity before expensive operations, and track actual usage. This client handles the full reservation lifecycle: reserve budget up front, execute your work, then commit or release — with automatic heartbeats, retries, and typed error handling.
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.0",
4
- "description": "TypeScript client for the Cycles budget-management protocol",
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
- "cycles",
17
- "budget",
18
- "billing",
19
- "metering",
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
- "governance",
26
- "agents",
27
- "anthropic",
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
- "token-budget",
30
- "spend-limit"
37
+ "anthropic",
38
+ "typescript-sdk",
39
+ "nodejs",
40
+ "cycles",
41
+ "runcycles"
31
42
  ],
32
43
  "type": "module",
33
44
  "main": "./dist/index.cjs",