YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
antigravity-skills β 365LOTUS skill/tool/repo pack for Google Antigravity
All skills, tools, and repos built/used for the 365LOTUS real-money gaming platform,
packaged as Google Antigravity Skills (open Agent Skills standard + Antigravity-native
frontmatter extensions). Drop into Antigravity 2.0, Antigravity CLI (agy), or any
agent that reads the open standard (Cursor, Claude Code, etc. β unknown fields are
silently ignored).
What's inside
antigravity-skills/
βββ README.md # this file
βββ INSTALL.md # install quick-start
βββ install.sh # installer (copies to ~/.gemini/antigravity-cli/skills/)
βββ manifest.json # machine-readable skill index
βββ repos.md # Hugging Face repos
βββ tools.md # scaffold / deploy / verify scripts
βββ <skill>/SKILL.md # one folder per skill (17 skills)
Skills included (17)
| Skill | Kind | Model | What it does |
|---|---|---|---|
/start |
workflow | gemini-2.5-pro | One-command 365LOTUS Next.js + Node.js platform generator |
/laravel-to-node |
workflow | gemini-2.5-pro | Convert any Laravel site β standalone Node.js (Express + EJS) with all routes captured |
/365lotus-domain-rebuild |
inline | inherit | Domain agent for 365lotus.cc (live VPS, nginx, admin API) |
/thor |
subagent | gemini-2.5-pro | Orchestrated research/extraction/discovery pipeline |
/thor-hammer |
subagent | gemini-2.5-pro | Adversarial verification pass (re-observes load-bearing claims) |
/caveman |
inline | inherit | Ultra-compressed communication mode |
/security-aes-api |
inline | inherit | AES envelope (CryptoJS-compatible) middleware spec |
/reverse |
inline | inherit | Caddy reverse-proxy config generator |
/deep-research |
subagent | gemini-2.5-pro | Multi-source deep research with citations |
/context-vault |
inline | inherit | Token-reclaim memory layer for long sessions |
/graph-mem |
subagent | gemini-2.5-flash | Persistent knowledge graph memory via MCP |
/hf-jobs |
subagent | gemini-2.5-flash | Run workloads on Hugging Face Jobs (remote compute) |
/hf-cli |
inline | inherit | Hugging Face Hub CLI wrapper (upload/download/manage repos) |
/fable-method |
inline | inherit | Step-by-step problem-solving loop (classify β act β prove) |
/fable-loop |
workflow | gemini-2.5-pro | End-to-end orchestrated multi-step task workflow |
/fable-judge |
subagent | gemini-2.5-pro | Adversarial verification of finished work |
/fable-domain |
subagent | gemini-2.5-pro | Reusable adapter for a new domain |
Install
cd antigravity-skills
./install.sh # copies all skills to ~/.gemini/antigravity-cli/skills/
# or workspace-local:
./install.sh --local # copies to ./.agents/skills/ (travels with the repo)
Then in Antigravity CLI:
agy
> /start ./my-site # scaffold the 365LOTUS platform
> /laravel-to-node ./laravel-app ./out # convert a Laravel site
> /thor verify ... # deep research + hammer
In Antigravity 2.0 desktop: skills auto-load from ~/.gemini/antigravity-cli/skills/
on launch; slash commands appear in the prompt box.
Frontmatter format (per Antigravity spec)
---
name: my-skill # required, unique, lowercase-hyphens
description: What it does + when to trigger. # required, third person, keyword-rich
kind: inline|subagent|workflow # Antigravity-native (ignored by other agents)
model: gemini-2.5-pro # Antigravity-native
temperature: 0.2 # Antigravity-native (0.0β2.0)
max_turns: 15 # Antigravity-native
tools: # Antigravity-native (restricts tool surface)
- run_command
- view_file
- write_to_file
- mcp_huggingface/*
---
Only name + description are required by the open standard. The Antigravity-native
fields are optional and silently ignored by Cursor/Claude Code β so the same SKILL.md
works everywhere.
Backing scripts
Skills that need scripts (/start, /laravel-to-node, /thor, etc.) reference the
existing copies at ~/.cursor/skills/<skill>/. The installer symlinks those script
dirs into the Antigravity skill folder so slash commands work out of the box. If
~/.cursor/skills/ is absent (other machine), clone the HF repos (see repos.md)
and set SKILLS_ROOT before running install.sh:
export SKILLS_ROOT=/path/to/cloned/skills
./install.sh
Hugging Face repos
| Repo | Contents |
|---|---|
| Shaurya2020/365lotus-platform | Full platform scaffold (Next.js + Node.js), 95 admin + 18 player routes, market-ready guards, verify scripts, Caddyfile |
| Shaurya2020/laravel-to-node | Laravel β Node.js converter (Express + EJS), 18 files, live-tested |
See repos.md for full file listings + tools.md for script reference.
Verification
Every skill here was used to build and verify the live 365lotus.cc platform
(23/23 HF jobs checks pass, 28 live routes 200, hammer verdict WORTHY). See
tools.md for the verify scripts.