소스 정보
- 저장소
- 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 maxxit-lazy-trading명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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 직업 분류 기준
SKILL.md 표시 중
| emoji | 📈 |
| name | maxxit-lazy-trading |
| version | 1.0.0 |
| author | Maxxit |
| description | Execute perpetual trades on Ostium via Maxxit's Lazy Trading API |
| homepage | https://maxxit.ai |
| repository | https://github.com/Maxxit-ai/maxxit-latest |
| requires | {"env":["MAXXIT_API_KEY","MAXXIT_API_URL"]} |
Execute perpetual futures trades on Ostium protocol through Maxxit's Lazy Trading API. This skill enables automated trading based on signals you send programmatically.
All requests require an API key with prefix lt_. Pass it via:
X-API-KEY: lt_your_api_keyAuthorization: Bearer lt_your_api_keyRetrieve lazy trading account information including agent status, Telegram connection, and trading preferences.
curl -L -X GET "${MAXXIT_API_URL}/api/lazy-trading/programmatic/club-details" \
-H "X-API-KEY: ${MAXXIT_API_KEY}"
Response:
{
"success": true,
"user_wallet": "0x...",
"agent": {
"id": "agent-uuid",
"name": "Lazy Trader - Username",
"venue": "ostium",
"status": "active"
},
"telegram_user": {
"id": 123,
"telegram_user_id": "123456789",
"telegram_username": "trader"
},
"deployment": {
"id": "deployment-uuid",
"status": "active",
"enabled_venues"
Send a trading signal/message that will be processed by your lazy trading agent.
curl -L -X POST "${MAXXIT_API_URL}/api/lazy-trading/programmatic/send-message" \
-H "X-API-KEY: ${MAXXIT_API_KEY}" \
-H "Content-Type: application/json" \
-d '{"message": "Long BTC 10x leverage, entry 65000, TP 70000, SL 62000"}'
Request Body:
{
"message": "Your trading signal text"
}
Response:
{
"success": true,
"message_id": "api_0x..._1234567890_abc123",
"post_id": 456
}
The lazy trading system processes natural language trading signals. Here are examples:
"Long ETH with 5x leverage, entry at 3200""Short BTC 10x, TP 60000, SL 68000""Buy 100 USDC worth of ETH perpetual""Long SOL 3x leverage, entry 150, take profit 180, stop loss 140""Short AVAX 5x, risk 2% of portfolio""Close ETH long position""Take profit on BTC short"| Variable | Description | Example |
|---|---|---|
MAXXIT_API_KEY | Your lazy trading API key (starts with lt_) | lt_abc123... |
MAXXIT_API_URL | Maxxit API base URL | https://maxxit.ai |
| Status Code | Meaning |
|---|---|
| 401 | Invalid or missing API key |
| 404 | Lazy trader agent not found (complete setup first) |
| 400 | Missing or invalid message |
| 405 | Wrong HTTP method |
| 500 | Server error |
MAXXIT_API_KEY and MAXXIT_API_URL