@aomi-labs/client 0.1.21 → 0.1.23
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/dist/cli.js +4048 -3396
- package/dist/index.cjs +658 -479
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +190 -250
- package/dist/index.d.ts +190 -250
- package/dist/index.js +655 -472
- package/dist/index.js.map +1 -1
- package/package.json +8 -6
- package/skills/README.md +2 -2
- package/skills/{aomi-app-builder → aomi-build}/SKILL.md +2 -2
- package/skills/aomi-build/agents/openai.yaml +4 -0
- package/skills/aomi-transact/SKILL.md +376 -113
- package/skills/aomi-app-builder/agents/openai.yaml +0 -4
- /package/skills/{aomi-app-builder → aomi-build}/references/aomi-sdk-patterns.md +0 -0
- /package/skills/{aomi-app-builder → aomi-build}/references/spec-to-tools.md +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aomi-labs/client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "Platform-agnostic TypeScript client for the Aomi backend API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -26,14 +26,16 @@
|
|
|
26
26
|
"skills",
|
|
27
27
|
"README.md"
|
|
28
28
|
],
|
|
29
|
-
"scripts": {
|
|
30
|
-
"build": "tsup",
|
|
31
|
-
"clean:dist": "rm -rf dist"
|
|
32
|
-
},
|
|
33
29
|
"dependencies": {
|
|
34
30
|
"@alchemy/wallet-apis": "5.0.0-beta.22",
|
|
35
31
|
"@getpara/aa-alchemy": "2.21.0",
|
|
36
32
|
"@getpara/aa-pimlico": "2.21.0",
|
|
33
|
+
"citty": "^0.2.2",
|
|
34
|
+
"permissionless": "^0.3.5",
|
|
37
35
|
"viem": "^2.47.11"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsup",
|
|
39
|
+
"clean:dist": "rm -rf dist"
|
|
38
40
|
}
|
|
39
|
-
}
|
|
41
|
+
}
|
package/skills/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Agent skills for interacting with the [Aomi](https://aomi.dev) on-chain AI trans
|
|
|
6
6
|
|
|
7
7
|
| Skill | Description |
|
|
8
8
|
|-------|-------------|
|
|
9
|
-
| [aomi-
|
|
9
|
+
| [aomi-build](aomi-build/SKILL.md) | Build Aomi apps and plugins from APIs, specs, SDK docs, runtime interfaces, and product requirements |
|
|
10
10
|
| [aomi-transact](aomi-transact/SKILL.md) | Build and execute EVM transactions through a conversational AI agent via the `aomi` CLI |
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
@@ -33,7 +33,7 @@ npm install -g viem
|
|
|
33
33
|
|
|
34
34
|
Once installed, ask your agent:
|
|
35
35
|
|
|
36
|
-
- "What's the price of ETH?"
|
|
36
|
+
- "Use aomi: What's the price of ETH?"
|
|
37
37
|
- "Swap 1 ETH for USDC on Uniswap"
|
|
38
38
|
- "Send 0.1 ETH to vitalik.eth"
|
|
39
39
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: aomi-
|
|
2
|
+
name: aomi-build
|
|
3
3
|
description: >
|
|
4
4
|
Use when the user wants to build, scaffold, or update an Aomi app/plugin from
|
|
5
5
|
API docs, OpenAPI or Swagger specs, SDK docs, repository examples, endpoint
|
|
@@ -15,7 +15,7 @@ metadata:
|
|
|
15
15
|
version: "0.1"
|
|
16
16
|
---
|
|
17
17
|
|
|
18
|
-
# Aomi
|
|
18
|
+
# Aomi Build
|
|
19
19
|
|
|
20
20
|
Use this skill for tasks like:
|
|
21
21
|
|