You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -49,7 +49,7 @@ rules to write portable content.
49
49
|`model: opus` (agent) | mapped to `gpt-5`| rewritten to `inherit`| rewritten to `anthropic/claude-opus-4-7`| mapped to `gemini-2.5-pro`| mapped to `gemini-2.5-pro`|
50
50
|`TodoWrite` in body | no equivalent — leave as-is | no equivalent — leave as-is | works as-is | no equivalent | no equivalent |
51
51
| Skill body > 8 KB | split into `references/details.md`| passed through | passed through | passed through | passed through |
52
-
| Agent named `worker`| namespaced to `<plugin>__worker`| passed through | passed through | passed through | namespaced to `<plugin>-<agent>`|
52
+
| Agent named `worker`| namespaced to `<plugin>__worker`| passed through | passed through | passed through | namespaced to `<plugin>__<agent>`|
53
53
| Slash command (`commands/<x>.md`) | converted to skill | passed through | rewritten to `.opencode/commands/`| TOML at `commands/<plugin>/<x>.toml`| converted to skill |
.antigravity/agents/, .antigravity/skills/ # generated by Antigravity adapter
65
+
.antigravity/agents/, .antigravity/skills/, .antigravity/workflows/ # generated by Antigravity adapter
66
66
```
67
67
68
68
## Regenerating
@@ -76,9 +76,11 @@ make generate HARNESS=antigravity
76
76
# Or all at once:
77
77
make generate-all
78
78
79
-
# Optional global OpenCode install:
79
+
# Optional global install:
80
80
make install-opencode
81
+
make install-antigravity
81
82
make uninstall-opencode
83
+
make uninstall-antigravity
82
84
```
83
85
84
86
## External Pensyve integrations
@@ -97,17 +99,21 @@ For generated harnesses, use Pensyve's upstream harness-native integration:
97
99
98
100
## Global install
99
101
100
-
OpenCodeand Copilot support installing generated artifacts globally for user-level discovery:
102
+
OpenCode, Copilot, and Antigravity CLI support installing generated artifacts globally for user-level discovery:
101
103
102
104
```bash
103
-
make install-opencode # symlink .opencode/ → ~/.config/opencode/
105
+
make install-opencode # symlink .opencode/ → ~/.config/opencode/
104
106
make uninstall-opencode
105
107
106
-
make install-copilot # symlink .copilot/ → ~/.copilot/
108
+
make install-copilot # symlink .copilot/ → ~/.copilot/
107
109
make uninstall-copilot
108
110
111
+
make install-antigravity # symlink .antigravity/ → ~/.gemini/antigravity-cli/
112
+
make uninstall-antigravity
113
+
109
114
# Force-replace conflicting symlinks:
110
115
make install-copilot FORCE=1
116
+
make install-antigravity FORCE=1
111
117
```
112
118
113
119
> Copilot discovers agents from `.copilot/agents/` and skills from `.copilot/skills/` at the repo level, and from `~/.copilot/agents/` and `~/.copilot/skills/` at the user level. The adapter emits to `.copilot/`; use `make install-copilot` for user-level discovery.
Copy file name to clipboardExpand all lines: tools/adapters/capabilities.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -187,7 +187,7 @@ class Capability:
187
187
skill_body_max_bytes=_NO_CAP,
188
188
tool_name_case="lowercase",
189
189
bare_model_aliases=False,
190
-
notes="Emits agent.json to .antigravity/agents/<name>/ and SKILL.md to .antigravity/skills/<name>/.",
190
+
notes="Emits agent.json to .antigravity/agents/<name>/, SKILL.md to .antigravity/skills/<name>/, and workflow .md to .antigravity/workflows/ (plus extra-writes to .agent/ and .agents/ for IDE/2.0 discovery).",
0 commit comments