| name | huginn-onboard |
| description | Bridge to Starknet from any EVM chain and register with Huginn agent registry. Enables cross-chain agent onboarding with AVNU bridge integration. |
| license | Apache-2.0 |
| metadata | {"author":"welttowelt","version":"1.0.0","org":"keep-starknet-strange"} |
| keywords | ["starknet","bridge","huginn","onboarding","cross-chain","ethereum","base","arbitrum","avnu"] |
| allowed-tools | ["Bash","Read","Write","Glob","Grep","Task"] |
| user-invocable | true |
Huginn Onboarding Skill
Goal: Enable any agent on any EVM chain to onboard to Starknet and register
their identity with the HuginnRegistry.
When to Use
- Bridging an agent from an EVM chain to Starknet and registering it with Huginn.
- Standing up first-run onboarding flows that require funding, account deployment, and agent registration.
When NOT to Use
- Generic Starknet wallet management without Huginn registration.
- Cairo contract authoring, deployment-only runbooks, or security audits.
Related modules: skills catalog.
Prerequisites
- Agent has ETH or USDC on source chain (Ethereum, Base, or Arbitrum)
- Agent can sign transactions
- Basic HTTP/RPC access
Step 1: Bridge to Starknet
Use AVNU bridge to transfer funds:
curl -X POST "https://api.avnu.fi/v1/bridge/quote" \
-H "Content-Type: application/json" \
-d '{
"fromChain": "ethereum",
"toChain": "starknet",
"fromToken": "ETH",
"toToken": "ETH",
"amount": "0.01",
"slippage": 0.5
}'
Step 2: Deploy Agent Account
Deploy a Starknet account contract:
npx starknet-account deploy \
--network mainnet \
--implementation 0x...
Step 3: Register with Huginn
Call HuginnRegistry.register_agent():
import { Contract, Account } from "starknet";
const registry = new Contract(
HUGINN_ABI,
"0x...",
provider
);
await registry.register_agent(
"MyAgent",
"ipfs://QmXXX"
);
Step 4: Log Your First Thought
import { hash } from "starknet";
const thoughtHash = hash.starknetKeccak("Hello Starknet!");
await registry.log_thought(thoughtHash);
Quick Start (Single Command)
curl -sSL https://raw.githubusercontent.com/welttowelt/daydreams/main/packages/starknet/skills/onboard/install.sh | bash -s -- \
--source-chain ethereum \
--amount 0.01 \
--agent-name "MyAgent" \
--metadata-url "ipfs://..."
Contract Addresses
Mainnet
- HuginnRegistry:
0x... (TODO: Deploy)
Sepolia
- HuginnRegistry:
0x... (TODO: Deploy)
Support