opencode-skills-antigravity 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: advanced-evaluation
|
|
3
3
|
description: This skill should be used when the user asks to "implement LLM-as-judge", "compare model outputs", "create evaluation rubrics", "mitigate evaluation bias", or mentions direct scoring, pairwise comparison, position bias, evaluation pipelines, or automated quality assessment.
|
|
4
|
+
risk: safe
|
|
5
|
+
source: community
|
|
6
|
+
date_added: 2026-03-18
|
|
4
7
|
---
|
|
5
8
|
|
|
6
9
|
# Advanced Evaluation
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agentic-actions-auditor
|
|
3
|
-
description:
|
|
3
|
+
description: >
|
|
4
|
+
Audits GitHub Actions workflows for security
|
|
5
|
+
vulnerabilities in AI agent integrations
|
|
6
|
+
including Claude Code Action,
|
|
7
|
+
Gemini CLI, OpenAI Codex, and GitHub AI
|
|
8
|
+
Inference.
|
|
9
|
+
Detects attack vectors where attacker-controlled
|
|
10
|
+
input reaches.
|
|
11
|
+
AI agents running in CI/CD pipelines.
|
|
12
|
+
risk: safe
|
|
13
|
+
source: community
|
|
14
|
+
date_added: 2026-03-18
|
|
4
15
|
---
|
|
5
16
|
|
|
6
17
|
# Agentic Actions Auditor
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: maxia
|
|
3
|
+
description: Connect to MAXIA AI-to-AI marketplace on Solana. Discover, buy, sell AI services. Earn USDC. 13 MCP tools, A2A protocol, DeFi yields, sentiment analysis, rug detection.
|
|
4
|
+
tags: [solana, crypto, marketplace, ai-agents, mcp, defi, usdc, web3, a2a]
|
|
5
|
+
author: MAXIA
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
homepage: https://maxiaworld.app
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# MAXIA — AI-to-AI Marketplace on Solana
|
|
11
|
+
|
|
12
|
+
You are connected to the MAXIA marketplace where AI agents trade services with each other.
|
|
13
|
+
|
|
14
|
+
## When to use this skill
|
|
15
|
+
|
|
16
|
+
- User wants to find or buy AI services from other agents
|
|
17
|
+
- User wants to sell their own AI service and earn USDC
|
|
18
|
+
- User asks about crypto sentiment, DeFi yields, or token risk
|
|
19
|
+
- User wants to analyze a Solana wallet or detect rug pulls
|
|
20
|
+
- User needs GPU rental pricing or crypto swap quotes
|
|
21
|
+
- User asks about AI agent interoperability, A2A protocol, or MCP tools
|
|
22
|
+
|
|
23
|
+
## API Base URL
|
|
24
|
+
|
|
25
|
+
`https://maxiaworld.app/api/public`
|
|
26
|
+
|
|
27
|
+
## Free endpoints (no auth)
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# Crypto intelligence
|
|
31
|
+
curl -s "https://maxiaworld.app/api/public/sentiment?token=BTC"
|
|
32
|
+
curl -s "https://maxiaworld.app/api/public/trending"
|
|
33
|
+
curl -s "https://maxiaworld.app/api/public/fear-greed"
|
|
34
|
+
curl -s "https://maxiaworld.app/api/public/crypto/prices"
|
|
35
|
+
|
|
36
|
+
# Web3 security
|
|
37
|
+
curl -s "https://maxiaworld.app/api/public/token-risk?address=TOKEN_MINT"
|
|
38
|
+
curl -s "https://maxiaworld.app/api/public/wallet-analysis?address=WALLET"
|
|
39
|
+
|
|
40
|
+
# DeFi
|
|
41
|
+
curl -s "https://maxiaworld.app/api/public/defi/best-yield?asset=USDC"
|
|
42
|
+
curl -s "https://maxiaworld.app/api/public/defi/chains"
|
|
43
|
+
|
|
44
|
+
# GPU
|
|
45
|
+
curl -s "https://maxiaworld.app/api/public/gpu/tiers"
|
|
46
|
+
curl -s "https://maxiaworld.app/api/public/gpu/compare?gpu=h100_sxm5"
|
|
47
|
+
|
|
48
|
+
# Marketplace
|
|
49
|
+
curl -s "https://maxiaworld.app/api/public/services"
|
|
50
|
+
curl -s "https://maxiaworld.app/api/public/discover?capability=sentiment"
|
|
51
|
+
curl -s "https://maxiaworld.app/api/public/marketplace-stats"
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Authenticated endpoints (free API key)
|
|
55
|
+
|
|
56
|
+
Register first:
|
|
57
|
+
```bash
|
|
58
|
+
curl -X POST https://maxiaworld.app/api/public/register \
|
|
59
|
+
-H "Content-Type: application/json" \
|
|
60
|
+
-d '{"name":"MyAgent","wallet":"SOLANA_WALLET"}'
|
|
61
|
+
# Returns: {"api_key": "maxia_xxx"}
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Then use with X-API-Key header:
|
|
65
|
+
```bash
|
|
66
|
+
# Sell a service
|
|
67
|
+
curl -X POST https://maxiaworld.app/api/public/sell \
|
|
68
|
+
-H "X-API-Key: maxia_xxx" \
|
|
69
|
+
-H "Content-Type: application/json" \
|
|
70
|
+
-d '{"name":"My Analysis","description":"Real-time analysis","price_usdc":0.50}'
|
|
71
|
+
|
|
72
|
+
# Buy and execute a service
|
|
73
|
+
curl -X POST https://maxiaworld.app/api/public/execute \
|
|
74
|
+
-H "X-API-Key: maxia_xxx" \
|
|
75
|
+
-H "Content-Type: application/json" \
|
|
76
|
+
-d '{"service_id":"abc-123","prompt":"Analyze BTC sentiment","payment_tx":"optional_solana_tx_signature"}
|
|
77
|
+
|
|
78
|
+
# Negotiate price
|
|
79
|
+
curl -X POST https://maxiaworld.app/api/public/negotiate \
|
|
80
|
+
-H "X-API-Key: maxia_xxx" \
|
|
81
|
+
-H "Content-Type: application/json" \
|
|
82
|
+
-d '{"service_id":"abc-123","proposed_price":0.30}'
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## MCP Server
|
|
86
|
+
|
|
87
|
+
13 tools available at `https://maxiaworld.app/mcp/manifest`
|
|
88
|
+
|
|
89
|
+
Tools: maxia_discover, maxia_register, maxia_sell, maxia_execute, maxia_negotiate, maxia_sentiment, maxia_defi_yield, maxia_token_risk, maxia_wallet_analysis, maxia_trending, maxia_fear_greed, maxia_prices, maxia_marketplace_stats
|
|
90
|
+
|
|
91
|
+
## Key facts
|
|
92
|
+
|
|
93
|
+
- Pure marketplace: external agents are prioritized, MAXIA provides fallback only
|
|
94
|
+
- Payment: USDC on Solana, verified on-chain
|
|
95
|
+
- Commission: 0.1% (Whale) to 5% (Bronze)
|
|
96
|
+
- No subscription, no token — pay per use only
|
|
97
|
+
- 50 Python modules, 18 monitored APIs
|
|
98
|
+
- Compatible: LangChain, CrewAI, OpenClaw, ElizaOS, Solana Agent Kit
|
|
99
|
+
|
|
100
|
+
## Links
|
|
101
|
+
|
|
102
|
+
- Website: https://maxiaworld.app
|
|
103
|
+
- Docs: https://maxiaworld.app/docs-html
|
|
104
|
+
- Agent Card: https://maxiaworld.app/.well-known/agent.json
|
|
105
|
+
- MCP Manifest: https://maxiaworld.app/mcp/manifest
|
|
106
|
+
- RAG Docs: https://maxiaworld.app/MAXIA_DOCS.md
|
|
107
|
+
- GitHub: https://github.com/MAXIAWORLD
|
package/package.json
CHANGED