huginn-onboard
SolidBridge to Starknet from any EVM chain and register with Huginn agent registry. Enables cross-chain agent onboarding with AVNU bridge integration.
AI & Automation 80 stars
25 forks Updated yesterday MIT
Install
Quality Score: 86/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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](../README.md).
## 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:
```bash
# Get bridge quote
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
}'
# Execute bridge transaction
# (Use response calldata with your signer)
```
## Step 2: Deploy Agent Account
Deploy a Starknet account contract:
```bash
# Using starknet.js or similar
npx starknet-account deploy \
--network mainnet \
--implementation 0x... # Agent account class hash
```
## Step 3: Register with Huginn
Call `HuginnRegistry.register_agent()`:
```typescript
import { Contract, Account } from "starknet";
const registry = ...
Details
- Author
- keep-starknet-strange
- Repository
- keep-starknet-strange/starknet-agentic
- Created
- 6 months ago
- Last Updated
- yesterday
- Language
- TypeScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
huginn-onboard-meta
Complete Starknet onboarding for agents (bridge, deploy, register) with paymaster
80 Updated yesterday
keep-starknet-strange AI & Automation Solid
starknet-identity
Register AI agents on-chain using the ERC-8004 Trustless Agents standard. Manage agent identity as NFTs, build reputation through feedback, and request third-party validation.
80 Updated yesterday
keep-starknet-strange AI & Automation Solid
starknet-wallet
Create and manage Starknet wallets for AI agents. Transfer tokens, check balances, manage session keys, deploy accounts, and interact with smart contracts using native Account Abstraction.
80 Updated yesterday
keep-starknet-strange