forked from BillionsNetwork/verified-agent-identity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlow93
More file actions
44 lines (35 loc) · 1.16 KB
/
Flow93
File metadata and controls
44 lines (35 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Verify Human Identity
on:
workflow_dispatch:
inputs:
agent_name:
description: 'Theflow93'
required: true
default: 'Theflow93'
agent_description:
description: 'Theflow93'
required: true
default: 'Theflow93 AI Agent'
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm' # Menambah cache agar install lebih cepat
- name: Step 1 - Install ClawHub skill
run: npx clawhub@latest install verified-agent-identity
- name: Install script dependencies
run: |
cd scripts
npm install
- name: Step 2 - Create new Ethereum Identity
run: node scripts/createNewEthereumIdentity.js
- name: Step 3 - Link Human to Agent
# Menggunakan format JSON yang lebih bersih untuk menghindari error parsing pada argumen --challenge
run: |
node scripts/manualLinkHumanToAgent.js --challenge '{"name": "Theflow93", "description": "Theflow93 AI Agent"}'