@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aomi-labs/client",
3
- "version": "0.1.21",
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-app-builder](aomi-app-builder/SKILL.md) | Build Aomi apps and plugins from APIs, specs, SDK docs, runtime interfaces, and product requirements |
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-app-builder
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 App Builder
18
+ # Aomi Build
19
19
 
20
20
  Use this skill for tasks like:
21
21
 
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "Aomi Build"
3
+ short_description: "Build Aomi apps from APIs and specs"
4
+ default_prompt: "Use $aomi-build to turn this API, OpenAPI spec, or product brief into an Aomi SDK app/plugin with a clean tool surface, preamble, and validation plan."