opencode-skills-antigravity 0.0.9 → 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.
package/README.md
CHANGED
|
@@ -1,31 +1,59 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
<img src="./docs/logo.svg" alt="OpenCode Skills Antigravity"/>
|
|
4
|
+
|
|
5
|
+
<br/>
|
|
6
|
+
<br/>
|
|
7
|
+
<br/>
|
|
8
|
+
|
|
9
|
+
[](https://www.npmjs.com/package/opencode-skills-antigravity)
|
|
10
|
+
[](https://www.npmjs.com/package/opencode-skills-antigravity)
|
|
11
|
+
[](./LICENSE)
|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
|
|
1
15
|
# OpenCode Skills Antigravity
|
|
2
16
|
|
|
3
|
-
An [OpenCode CLI](https://opencode.ai/) plugin that bundles and
|
|
17
|
+
> An [OpenCode CLI](https://opencode.ai/) plugin that bundles and auto-syncs the [Antigravity Awesome Skills](https://github.com/sickn33/antigravity-awesome-skills) collection — delivered instantly, with zero network latency at startup.
|
|
4
18
|
|
|
5
|
-
|
|
19
|
+
---
|
|
6
20
|
|
|
7
|
-
|
|
21
|
+
## Overview
|
|
8
22
|
|
|
9
|
-
|
|
10
|
-
- **Instant Deployment:** When you start OpenCode, the plugin instantly copies the pre-bundled skills to your local machine. This process works perfectly offline and ensures zero network latency during startup.
|
|
23
|
+
**OpenCode Skills Antigravity** bridges the OpenCode CLI with the Antigravity Awesome Skills repository. Instead of fetching skills on every startup, this plugin ships with a pre-bundled snapshot that gets copied directly to your local machine the moment OpenCode launches.
|
|
11
24
|
|
|
12
|
-
|
|
25
|
+
The result: skills are always fresh (synced hourly via GitHub Actions), always available (even offline), and always instant.
|
|
13
26
|
|
|
14
|
-
|
|
27
|
+
---
|
|
15
28
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
29
|
+
## How It Works
|
|
30
|
+
|
|
31
|
+
The plugin operates in two phases:
|
|
32
|
+
|
|
33
|
+
**1. Automated upstream sync (CI)**
|
|
34
|
+
|
|
35
|
+
A GitHub Actions workflow runs every hour, checking the [Antigravity Awesome Skills](https://github.com/sickn33/antigravity-awesome-skills) repository for changes. When new or updated skills are detected, the workflow:
|
|
36
|
+
|
|
37
|
+
- Re-bundles the skill files into `bundled-skills/`
|
|
38
|
+
- Bumps the package version (`patch`)
|
|
39
|
+
- Creates a tagged GitHub Release
|
|
40
|
+
- Publishes the new version to npm
|
|
41
|
+
|
|
42
|
+
**2. Local deployment (startup)**
|
|
19
43
|
|
|
20
|
-
|
|
44
|
+
When OpenCode starts, the plugin runs and copies the pre-bundled skills from the npm package to:
|
|
21
45
|
|
|
22
|
-
|
|
46
|
+
```
|
|
47
|
+
~/.config/opencode/skills/
|
|
48
|
+
```
|
|
23
49
|
|
|
24
|
-
|
|
50
|
+
No network calls, no latency, no failures. If the copy somehow fails, a silent fallback attempts to fetch via `npx antigravity-awesome-skills` in the background.
|
|
25
51
|
|
|
26
|
-
|
|
52
|
+
---
|
|
27
53
|
|
|
28
|
-
|
|
54
|
+
## Installation
|
|
55
|
+
|
|
56
|
+
Add the plugin to your global OpenCode configuration file at `~/.config/opencode/opencode.json`:
|
|
29
57
|
|
|
30
58
|
```json
|
|
31
59
|
{
|
|
@@ -35,19 +63,110 @@ Edit (or create) `~/.config/opencode/opencode.json`:
|
|
|
35
63
|
}
|
|
36
64
|
```
|
|
37
65
|
|
|
38
|
-
OpenCode will automatically download the npm package on next startup via Bun
|
|
66
|
+
That's it. OpenCode will automatically download the npm package on next startup via Bun — no manual `npm install` needed.
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Usage
|
|
39
71
|
|
|
40
|
-
|
|
72
|
+
Once installed, all bundled skills are available in three ways:
|
|
41
73
|
|
|
42
|
-
|
|
74
|
+
**Explicit invocation via CLI:**
|
|
75
|
+
```bash
|
|
76
|
+
opencode run /brainstorming help me plan a new feature
|
|
77
|
+
opencode run /refactor clean up this function
|
|
78
|
+
```
|
|
43
79
|
|
|
80
|
+
**Slash commands in the OpenCode chat:**
|
|
44
81
|
```
|
|
45
|
-
|
|
82
|
+
/brainstorming
|
|
83
|
+
/refactor
|
|
84
|
+
/document
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
**Natural language — OpenCode picks the right skill automatically:**
|
|
88
|
+
```
|
|
89
|
+
"Help me brainstorm ideas for a REST API design"
|
|
90
|
+
"Refactor this function to be more readable"
|
|
46
91
|
```
|
|
47
92
|
|
|
48
|
-
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
## CI/CD Pipeline
|
|
96
|
+
|
|
97
|
+
The release pipeline is fully automated and self-contained:
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
[Hourly Cron]
|
|
101
|
+
│
|
|
102
|
+
▼
|
|
103
|
+
Auto-Sync Skills ──── no changes ───▶ (skip)
|
|
104
|
+
│
|
|
105
|
+
changes detected
|
|
106
|
+
│
|
|
107
|
+
▼
|
|
108
|
+
Bump patch version + commit + tag
|
|
109
|
+
│
|
|
110
|
+
▼
|
|
111
|
+
Create GitHub Release
|
|
112
|
+
│
|
|
113
|
+
▼
|
|
114
|
+
Publish to npm
|
|
115
|
+
│
|
|
116
|
+
▼
|
|
117
|
+
Sync main → develop
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
Manual releases (minor/major/patch) can also be triggered via the **Create Release** workflow dispatch in the Actions tab.
|
|
121
|
+
|
|
122
|
+
---
|
|
123
|
+
|
|
124
|
+
## Project Structure
|
|
125
|
+
|
|
126
|
+
```
|
|
127
|
+
opencode-skills-antigravity/
|
|
128
|
+
├── src/
|
|
129
|
+
│ └── index.ts # Plugin entry point — copies bundled skills on startup
|
|
130
|
+
├── bundled-skills/ # Pre-bundled skills snapshot (auto-updated by CI)
|
|
131
|
+
├── dist/ # Compiled TypeScript output
|
|
132
|
+
├── .github/
|
|
133
|
+
│ └── workflows/
|
|
134
|
+
│ ├── sync-skills.yml # Hourly skill sync + auto-publish
|
|
135
|
+
│ ├── release.yml # Manual version bump + GitHub Release
|
|
136
|
+
│ ├── publish.yml # npm publish on new release
|
|
137
|
+
│ └── merge-branch.yml # Keeps develop in sync with main
|
|
138
|
+
├── package.json
|
|
139
|
+
└── tsconfig.json
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## Development
|
|
145
|
+
|
|
146
|
+
**Requirements:** Node.js ≥ 20, TypeScript ≥ 5
|
|
147
|
+
|
|
148
|
+
```bash
|
|
149
|
+
# Install dependencies
|
|
150
|
+
npm install
|
|
151
|
+
|
|
152
|
+
# Build
|
|
153
|
+
npm run build
|
|
154
|
+
|
|
155
|
+
# Output is in dist/
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
The plugin is written in TypeScript and compiled to ESNext with full type declarations. It targets ES2022 and uses ESM module resolution.
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## Contributing
|
|
163
|
+
|
|
164
|
+
Issues and pull requests are welcome at [github.com/FrancoStino/opencode-skills-antigravity](https://github.com/FrancoStino/opencode-skills-antigravity/issues).
|
|
165
|
+
|
|
166
|
+
If you'd like to contribute new skills to the upstream collection, head over to [antigravity-awesome-skills](https://github.com/sickn33/antigravity-awesome-skills) — they'll be automatically picked up and bundled here within the hour.
|
|
49
167
|
|
|
168
|
+
---
|
|
50
169
|
|
|
51
|
-
##
|
|
170
|
+
## License
|
|
52
171
|
|
|
53
172
|
MIT © [Davide Ladisa](https://www.davideladisa.it/)
|
|
@@ -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