forked from BillionsNetwork/verified-agent-identity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.yml
More file actions
43 lines (31 loc) · 926 Bytes
/
main.yml
File metadata and controls
43 lines (31 loc) · 926 Bytes
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
# Verified Agent Identity
name: readyfal
description: readyfal AI Agent
github: https://github.com/USERNAME
name: Verify Human Identity
on:
workflow_dispatch:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install ClawHub
run: npm install -g clawhub
- name: Install Verified Agent Identity
run: clawhub install verified-agent-identity
- name: Install dependencies
run: |
cd scripts
npm install
- name: Create Ethereum Identity
run: node scripts/createNewEthereumIdentity.js
- name: Link Human to Agent
run: |
node scripts/manualLinkHumanToAgent.js \
--challenge '{"name":"readyfal","description":"My AI Agent"}'