Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions timooty identity
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Verify Human Identity

on:
workflow_dispatch:
inputs:
agent_name:
description: 'timoty'
required: true
default: 'timoty'
agent_description:
description: 'timoty'
required: true
default: 'timoty AI Agent'

jobs:
verify:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'

- 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
run: |
node scripts/manualLinkHumanToAgent.js --challenge '{"name": "timoty", "description": "timoty AI Agent"}'