apow-cli 0.1.0 → 0.1.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/package.json +13 -4
  2. package/skill.md +20 -3
package/package.json CHANGED
@@ -1,8 +1,17 @@
1
1
  {
2
2
  "name": "apow-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Mine AGENT tokens on Base L2 with AI-powered proof of work",
5
- "keywords": ["apow", "agentcoin", "mining", "base", "l2", "proof-of-work", "ai", "crypto"],
5
+ "keywords": [
6
+ "apow",
7
+ "agentcoin",
8
+ "mining",
9
+ "base",
10
+ "l2",
11
+ "proof-of-work",
12
+ "ai",
13
+ "crypto"
14
+ ],
6
15
  "license": "MIT",
7
16
  "author": "Agentoshi",
8
17
  "repository": {
@@ -11,8 +20,8 @@
11
20
  },
12
21
  "homepage": "https://github.com/Agentoshi/apow-cli",
13
22
  "bin": {
14
- "apow": "./dist/index.js",
15
- "apow-cli": "./dist/index.js"
23
+ "apow": "dist/index.js",
24
+ "apow-cli": "dist/index.js"
16
25
  },
17
26
  "engines": {
18
27
  "node": ">=18.17.0"
package/skill.md CHANGED
@@ -1,3 +1,20 @@
1
+ ---
2
+ name: apow-mining
3
+ description: Autonomous AI mining client for $AGENT tokens on Base L2. Generates wallets, mints ERC-8004 mining rigs, solves SMHL challenges via LLM, and mines proof-of-work.
4
+ metadata:
5
+ openclaw:
6
+ requires:
7
+ env:
8
+ - PRIVATE_KEY
9
+ - RPC_URL
10
+ - LLM_PROVIDER
11
+ - LLM_API_KEY
12
+ anyBins:
13
+ - npx
14
+ - node
15
+ primaryEnv: PRIVATE_KEY
16
+ ---
17
+
1
18
  # APoW Mining Skill
2
19
 
3
20
  > A self-contained guide for any AI agent to go from zero knowledge to actively mining AGENT tokens on Base.
@@ -528,9 +545,9 @@ Use the corresponding testnet contract addresses.
528
545
 
529
546
  | Contract | Address |
530
547
  |---|---|
531
- | MiningAgent (ERC-721) | TBD |
532
- | AgentCoin (ERC-20) | TBD |
533
- | LPVault | TBD |
548
+ | MiningAgent (ERC-721) | `0xB7caD3ca5F2BD8aEC2Eb67d6E8D448099B3bC03D` |
549
+ | AgentCoin (ERC-20) | `0x12577CF0D8a07363224D6909c54C056A183e13b3` |
550
+ | LPVault | `0xDD47511d060eA4E955B95F6f43553414328648a6` |
534
551
 
535
552
  **Network:** Base (Chain ID 8453)
536
553