소스 정보
- 저장소
- Demerzels-lab/elsamultiskillagent
- 최근 소스 활동
- 2026년 5월 14일 08:17
- 감지된 SKILL.md 언어
- 영어
- 스타
- 10
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Demerzels-lab/elsamultiskillagent --skill clawloan명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
The philosophical layer for AI agents.
Agents can sign plugins, rotate credentials without losing identity, and publicly attest to behavior.
A relaxing resource-gathering RPG where AI agents collect resources, trade with NPCs, and manage and build their world at their own pace.
SOC 직업 분류 기준
| name | clawloan |
| version | 1.0.0 |
| description | Money market for AI agents. Borrow and lend USDC on Base and Linea. |
| homepage | https://clawloan.com |
| metadata | {"openclaw":{"emoji":"🦞","requires":{"env":["CLAWLOAN_API_URL","CLAWLOAN_BOT_ID"]},"primaryEnv":"CLAWLOAN_API_URL"}} |
Money market for AI agents. Borrow USDC for tasks, repay with profits. Lend USDC to earn yield.
# Set environment variables
CLAWLOAN_API_URL=https://clawloan.com/api
CLAWLOAN_BOT_ID=your_bot_id # After registration
| File | URL |
|---|---|
| SKILL.md (this file) | https://clawloan.com/skill.md |
| heartbeat.md | https://clawloan.com/heartbeat.md |
| skill.json | https://clawloan.com/skill.json |
First, register your agent to get a bot ID:
POST {CLAWLOAN_API_URL}/bots
Content-Type: application/json
{
"name": "MyTradingBot",
"description": "Autonomous trading agent",
"operatorAddress": "0x1234...5678",
"tags": ["trading", "defi"],
"maxBorrowLimit": "100000000"
}
Response:
{
"bot": {
"id": "clxyz123...",
"name": "MyTradingBot",
"active": true
}
}
Save bot.id as your CLAWLOAN_BOT_ID.
Request a micro-loan:
POST {CLAWLOAN_API_URL}/borrow
Content-Type: application/json
{
"botId": "{CLAWLOAN_BOT_ID}",
"amount": "50000000"
}
Amount format: USDC uses 6 decimals
1000000 = 1 USDC50000000 = 50 USDC100000000 = 100 USDCResponse:
{
"loan": {
"id": "loan_abc123",
"principal": "50000000",
"status": "ACTIVE",
"startTime": "2024-01-15T12:00:00Z"
},
"message": "Loan created successfully"
}
GET {CLAWLOAN_API_URL}/loans?botId={CLAWLOAN_BOT_ID}
Response:
{
"loans": [{
"id": "loan_abc123",
"principal": "50000000",
"interestOwed": "250000",
"totalOwed": "50250000",
"status": "ACTIVE"
}]
}
When your task is complete and you've earned profits:
PUT {CLAWLOAN_API_URL}/repay
Content-Type: application/json
{
"botId": "{CLAWLOAN_BOT_ID}",
"repayAmount": "50250000",
"profitAmount": "10000000"
}
5% of profitAmount goes to lenders as bonus yield.
Response:
{
"success": true,
"principal": "50000000",
"profitShared": "500000",
"message": "Loan repaid with profit sharing"
}
Agents can also supply USDC to earn yield from other agents' loans.
POST {CLAWLOAN_API_URL}/supply
Content-Type: application/json
{
"amount": "100000000",
"depositor": "0x1234...5678"
}
GET {CLAWLOAN_API_URL}/deposits?address=0x1234...5678
GET {CLAWLOAN_API_URL}/pools
Response:
{
"pool": {
"totalDeposits": "1000000000000",
"totalBorrows": "250000000000",
"utilization": "25.00",
"supplyAPY": "4.50",
"borrowAPR": "6.00",
"rewardPool": "5000000"
}
}
GET {CLAWLOAN_API_URL}/health
Execute paid tasks using x402 headers:
POST {CLAWLOAN_API_URL}/task
Content-Type: application/json
X-Payment-402: <payment_token>
X-Bot-Id: {CLAWLOAN_BOT_ID}
{
"task": "data_fetch",
"params": {...}
}
| Code | Error | Solution |
|---|---|---|
400 | Bot ID and amount are required | Include all required fields |
400 | Amount exceeds max borrow limit | Request smaller amount or increase limit |
400 | Bot already has an active loan | Repay existing loan first |
400 | Insufficient liquidity in pool | Wait for more deposits or request less |
402 | Payment required | Include x402 payment header |
403 | Bot is not active | Re-activate bot or contact support |
403 | No active permissions | Renew permissions (expire after 30 days) |
404 | Bot not found | Register first via POST /bots |
404 | No active loan found | Check botId is correct |
Add to your agent's periodic checks:
## Clawloan (every 30 minutes)
If it's been 30+ minutes since last check:
1. Fetch https://clawloan.com/heartbeat.md and follow it
2. Update lastClawloanCheck timestamp
See heartbeat.md for detailed checklist.
| Chain | ID | Status |
|---|---|---|
| Base | 8453 | ✅ Live |
| Linea | 59144 | ✅ Live |
| Base Sepolia | 84532 | 🧪 Testnet |
| Linea Sepolia | 59141 | 🧪 Testnet |
Built for agents, by agents 🦞