Skill Porter for Google Antigravity
When to Use
Use when adapting a locally obtained Claude Code, Cursor, Codex, or generic agent
skill bundle for Google Antigravity. The utility preserves support files and
previews limited tool-name substitutions; it does not prove client compatibility.
Prerequisites
- Python 3.9+; standard library only.
- A reviewed local skill directory containing
SKILL.md, that file itself, or a
repository with skills/<lowercase-hyphenated-id>/SKILL.md directories.
- Verify the upstream identity, pinned revision, license and complete bundle first.
Obtain remote material separately through your reviewed download/clone workflow.
- Use stable local directories you control. Do not run against a tree being
modified by another process or user. Inspect scripts without executing them.
Workflow
From this skill directory, preview the local bundle:
python3 scripts/port_skill.py --source "/absolute/path/my-skill" --dry-run
Review the diff. Only exact backtick-quoted tool identifiers such as View,
Edit, and Bash change. Frontmatter and support bytes remain intact. Verify
each target tool and its argument semantics in your actual client.
Copy to a fresh staging destination, then inspect before activating:
python3 scripts/port_skill.py --source "/absolute/path/my-skill" --dest "/absolute/path/staging"
Existing skill destinations are rejected; no global paths are written.
When the user requests workspace installation, verify the current project:
python3 scripts/port_skill.py --source "/absolute/path/my-skill" --workspace --dry-run
python3 scripts/port_skill.py --source "/absolute/path/my-skill" --workspace
This writes only .agents/skills/<id> under the current working directory.
Confirm that discovery path is supported by the intended host first.
Review context-file references, tool argument shapes, client configuration,
dependencies, licensing and multi-agent ordering manually. Validate the adapted
skill and test actual client invocation before claiming compatibility.
Examples
For a multi-skill repository, use its local root as the source:
python3 scripts/port_skill.py --source "/absolute/path/reviewed-repository" --dry-run
python3 scripts/port_skill.py --source "/absolute/path/reviewed-repository" --dest "/absolute/path/fresh-output"
A source-only invocation defaults to preview. Remote URLs are rejected; obtain
and inspect a pinned local checkout first. Run bundled tests from this directory:
PYTHONDONTWRITEBYTECODE=1 python3 -m unittest scripts/test_port_skill.py -v
Limitations
- Conservative text adaptation only: no AST conversion, semantic optimization,
automatic parallelization, artifact generation, or compatibility certification.
- Context references and support scripts retain their original bytes and may need
manual adaptation. Binary support files are copied intact, never interpreted.
- Symbolic links and non-regular files are rejected. Input is bounded to 1,000 files
and 20 MiB. This is not a sandbox against concurrent hostile filesystem changes;
use only stable directories you control.
- Disk or filesystem failure may leave a partial new destination. Inspect it and
choose a fresh output for retries. There is no overwrite or rollback mode.
- No downloads, credentials, network calls, global installation, plugin manifest
generation/registration or external MCP setup. Verify tool availability in the
actual host, whose version and capabilities may differ.
Source and license
Adapted from Pranav-Nexus/antigravity-skill-porter. The upstream MIT notice is
preserved in LICENSE.
1---2name: skill-porter3description: Preview conservative tool-name translations and copy complete local skill bundles for manual adaptation to Google Antigravity.4license: MIT5---6
7# Skill Porter for Google Antigravity
8
9## When to Use
10
11Use when adapting a locally obtained Claude Code, Cursor, Codex, or generic agent
12skill bundle for Google Antigravity. The utility preserves support files and
13previews limited tool-name substitutions; it does not prove client compatibility.
14
15## Prerequisites
16
17- Python 3.9+; standard library only.
18- A reviewed local skill directory containing `SKILL.md`, that file itself, or a
19 repository with `skills/<lowercase-hyphenated-id>/SKILL.md` directories.
20- Verify the upstream identity, pinned revision, license and complete bundle first.
21 Obtain remote material separately through your reviewed download/clone workflow.
22- Use stable local directories you control. Do not run against a tree being
23 modified by another process or user. Inspect scripts without executing them.
24
25## Workflow
26
271. From this skill directory, preview the local bundle:
28
29 ```bash
30 python3 scripts/port_skill.py --source "/absolute/path/my-skill" --dry-run
31 ```
32
332. Review the diff. Only exact backtick-quoted tool identifiers such as `View`,
34 `Edit`, and `Bash` change. Frontmatter and support bytes remain intact. Verify
35 each target tool and its argument semantics in your actual client.
363. Copy to a fresh staging destination, then inspect before activating:
37
38 ```bash
39 python3 scripts/port_skill.py --source "/absolute/path/my-skill" --dest "/absolute/path/staging"
40 ```
41
42 Existing skill destinations are rejected; no global paths are written.
434. When the user requests workspace installation, verify the current project:
44
45 ```bash
46 python3 scripts/port_skill.py --source "/absolute/path/my-skill" --workspace --dry-run
47 python3 scripts/port_skill.py --source "/absolute/path/my-skill" --workspace
48 ```
49
50 This writes only `.agents/skills/<id>` under the current working directory.
51 Confirm that discovery path is supported by the intended host first.
525. Review context-file references, tool argument shapes, client configuration,
53 dependencies, licensing and multi-agent ordering manually. Validate the adapted
54 skill and test actual client invocation before claiming compatibility.
55
56## Examples
57
58For a multi-skill repository, use its local root as the source:
59
60```bash
61python3 scripts/port_skill.py --source "/absolute/path/reviewed-repository" --dry-run
62python3 scripts/port_skill.py --source "/absolute/path/reviewed-repository" --dest "/absolute/path/fresh-output"
63```
64
65A source-only invocation defaults to preview. Remote URLs are rejected; obtain
66and inspect a pinned local checkout first. Run bundled tests from this directory:
67
68```bash
69PYTHONDONTWRITEBYTECODE=1 python3 -m unittest scripts/test_port_skill.py -v
70```
71
72## Limitations
73
74- Conservative text adaptation only: no AST conversion, semantic optimization,
75 automatic parallelization, artifact generation, or compatibility certification.
76- Context references and support scripts retain their original bytes and may need
77 manual adaptation. Binary support files are copied intact, never interpreted.
78- Symbolic links and non-regular files are rejected. Input is bounded to 1,000 files
79 and 20 MiB. This is not a sandbox against concurrent hostile filesystem changes;
80 use only stable directories you control.
81- Disk or filesystem failure may leave a partial new destination. Inspect it and
82 choose a fresh output for retries. There is no overwrite or rollback mode.
83- No downloads, credentials, network calls, global installation, plugin manifest
84 generation/registration or external MCP setup. Verify tool availability in the
85 actual host, whose version and capabilities may differ.
86
87## Source and license
88
89Adapted from Pranav-Nexus/antigravity-skill-porter. The upstream MIT notice is
90preserved in [LICENSE](LICENSE).