Skip to content

Commit 3766f6e

Browse files
committed
chore: add keywords to all packages, bump to v0.1.2
Signed-off-by: Todd Palmer <todd@betterdata.co>
1 parent 15d01d3 commit 3766f6e

23 files changed

Lines changed: 470 additions & 21 deletions

File tree

packages/actors/package.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
{
22
"name": "@loop-engine/actors",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "Actor types, constraints, and evidence helpers for Loop Engine transitions",
55
"license": "Apache-2.0",
6+
"keywords": [
7+
"loop-engine",
8+
"workflow",
9+
"governance",
10+
"state-machine",
11+
"audit-trail",
12+
"actors",
13+
"guards",
14+
"enterprise",
15+
"supply-chain",
16+
"decision-governance",
17+
"authorization",
18+
"ai-agent",
19+
"human-approval"
20+
],
621
"type": "module",
722
"main": "./dist/index.cjs",
823
"module": "./dist/index.js",

packages/adapter-anthropic/package.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
{
22
"name": "@loop-engine/adapter-anthropic",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "Anthropic adapter for creating Loop Engine AI actor submissions",
5+
"keywords": [
6+
"loop-engine",
7+
"workflow",
8+
"governance",
9+
"state-machine",
10+
"audit-trail",
11+
"actors",
12+
"guards",
13+
"enterprise",
14+
"supply-chain",
15+
"decision-governance",
16+
"anthropic",
17+
"claude",
18+
"ai",
19+
"llm",
20+
"claude-opus"
21+
],
522
"license": "Apache-2.0",
623
"type": "module",
724
"main": "./dist/index.cjs",

packages/adapter-commerce-gateway/package.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
{
22
"name": "@loop-engine/adapter-commerce-gateway",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "LLM Commerce Gateway adapter for Loop Engine — AI procurement and pricing actors",
5+
"keywords": [
6+
"loop-engine",
7+
"workflow",
8+
"governance",
9+
"state-machine",
10+
"audit-trail",
11+
"actors",
12+
"guards",
13+
"enterprise",
14+
"supply-chain",
15+
"decision-governance",
16+
"commerce-gateway",
17+
"commerce",
18+
"llm-commerce",
19+
"procurement"
20+
],
521
"license": "Apache-2.0",
622
"type": "module",
723
"main": "./dist/index.cjs",
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"name": "@loop-engine/adapter-gemini",
3+
"version": "0.1.2",
4+
"description": "Loop Engine AI actor adapter for Google Gemini",
5+
"keywords": [
6+
"loop-engine",
7+
"workflow",
8+
"governance",
9+
"state-machine",
10+
"audit-trail",
11+
"actors",
12+
"guards",
13+
"enterprise",
14+
"supply-chain",
15+
"decision-governance",
16+
"gemini",
17+
"google",
18+
"ai",
19+
"llm",
20+
"gemini-pro"
21+
],
22+
"license": "Apache-2.0",
23+
"type": "module",
24+
"main": "./dist/index.cjs",
25+
"module": "./dist/index.js",
26+
"types": "./dist/index.d.ts",
27+
"exports": {
28+
".": {
29+
"import": "./dist/index.js",
30+
"require": "./dist/index.cjs",
31+
"types": "./dist/index.d.ts"
32+
}
33+
},
34+
"scripts": {
35+
"build": "tsup",
36+
"lint": "tsc -p tsconfig.json --noEmit",
37+
"typecheck": "tsc -p tsconfig.json --noEmit",
38+
"test": "vitest run"
39+
},
40+
"engines": {
41+
"node": ">=18.0.0"
42+
},
43+
"peerDependencies": {
44+
"@google/generative-ai": "^0.21.0"
45+
},
46+
"devDependencies": {
47+
"@google/generative-ai": "^0.21.0"
48+
},
49+
"dependencies": {
50+
"@loop-engine/core": "workspace:*",
51+
"@loop-engine/actors": "workspace:*",
52+
"@loop-engine/sdk": "workspace:*"
53+
},
54+
"files": [
55+
"dist/",
56+
"README.md",
57+
"LICENSE"
58+
]
59+
}

packages/adapter-grok/package.json

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"name": "@loop-engine/adapter-grok",
3+
"version": "0.1.2",
4+
"description": "Loop Engine AI actor adapter for Grok (xAI)",
5+
"keywords": [
6+
"loop-engine",
7+
"workflow",
8+
"governance",
9+
"state-machine",
10+
"audit-trail",
11+
"actors",
12+
"guards",
13+
"enterprise",
14+
"supply-chain",
15+
"decision-governance",
16+
"grok",
17+
"xai",
18+
"ai",
19+
"llm",
20+
"grok-3"
21+
],
22+
"license": "Apache-2.0",
23+
"type": "module",
24+
"main": "./dist/index.cjs",
25+
"module": "./dist/index.js",
26+
"types": "./dist/index.d.ts",
27+
"exports": {
28+
".": {
29+
"import": "./dist/index.js",
30+
"require": "./dist/index.cjs",
31+
"types": "./dist/index.d.ts"
32+
}
33+
},
34+
"scripts": {
35+
"build": "tsup",
36+
"lint": "tsc -p tsconfig.json --noEmit",
37+
"typecheck": "tsc -p tsconfig.json --noEmit",
38+
"test": "vitest run"
39+
},
40+
"engines": {
41+
"node": ">=18.0.0"
42+
},
43+
"peerDependencies": {
44+
"openai": "^4.0.0"
45+
},
46+
"devDependencies": {
47+
"openai": "^4.0.0"
48+
},
49+
"dependencies": {
50+
"@loop-engine/core": "workspace:*",
51+
"@loop-engine/actors": "workspace:*",
52+
"@loop-engine/sdk": "workspace:*"
53+
},
54+
"files": [
55+
"dist/",
56+
"README.md",
57+
"LICENSE"
58+
]
59+
}

packages/adapter-memory/package.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
{
22
"name": "@loop-engine/adapter-memory",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "In-memory LoopStorageAdapter for local development and tests",
5+
"keywords": [
6+
"loop-engine",
7+
"workflow",
8+
"governance",
9+
"state-machine",
10+
"audit-trail",
11+
"actors",
12+
"guards",
13+
"enterprise",
14+
"supply-chain",
15+
"decision-governance",
16+
"memory",
17+
"in-memory",
18+
"testing",
19+
"development"
20+
],
521
"license": "Apache-2.0",
622
"type": "module",
723
"main": "./dist/index.cjs",

packages/adapter-openai/package.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
{
22
"name": "@loop-engine/adapter-openai",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "OpenAI adapter for creating Loop Engine AI actor submissions",
5+
"keywords": [
6+
"loop-engine",
7+
"workflow",
8+
"governance",
9+
"state-machine",
10+
"audit-trail",
11+
"actors",
12+
"guards",
13+
"enterprise",
14+
"supply-chain",
15+
"decision-governance",
16+
"openai",
17+
"gpt",
18+
"gpt-4o",
19+
"ai",
20+
"llm"
21+
],
522
"license": "Apache-2.0",
623
"type": "module",
724
"main": "./dist/index.cjs",

packages/adapter-openclaw/package.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
{
22
"name": "@loop-engine/adapter-openclaw",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "OpenClaw gateway EventBus adapter for Loop Engine",
5+
"keywords": [
6+
"loop-engine",
7+
"workflow",
8+
"governance",
9+
"state-machine",
10+
"audit-trail",
11+
"actors",
12+
"guards",
13+
"enterprise",
14+
"supply-chain",
15+
"decision-governance",
16+
"openclaw",
17+
"agentic",
18+
"commerce",
19+
"integration"
20+
],
521
"license": "Apache-2.0",
622
"type": "module",
723
"main": "./dist/index.cjs",

packages/adapter-pagerduty/package.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
{
22
"name": "@loop-engine/adapter-pagerduty",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "Route Loop Engine approval-required states to PagerDuty incidents",
5+
"keywords": [
6+
"loop-engine",
7+
"workflow",
8+
"governance",
9+
"state-machine",
10+
"audit-trail",
11+
"actors",
12+
"guards",
13+
"enterprise",
14+
"supply-chain",
15+
"decision-governance",
16+
"pagerduty",
17+
"incident",
18+
"alerting",
19+
"oncall"
20+
],
521
"license": "Apache-2.0",
622
"type": "module",
723
"main": "./dist/index.cjs",

packages/adapter-vercel-ai/package.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
{
22
"name": "@loop-engine/adapter-vercel-ai",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "Govern Vercel AI SDK tool calls with Loop Engine approval gates and audit trails",
5+
"keywords": [
6+
"loop-engine",
7+
"workflow",
8+
"governance",
9+
"state-machine",
10+
"audit-trail",
11+
"actors",
12+
"guards",
13+
"enterprise",
14+
"supply-chain",
15+
"decision-governance",
16+
"vercel",
17+
"vercel-ai-sdk",
18+
"ai",
19+
"streaming"
20+
],
521
"license": "Apache-2.0",
622
"type": "module",
723
"main": "./dist/index.cjs",

0 commit comments

Comments
 (0)