@ryuenn3123/agentic-senior-core 5.8.3 → 5.8.4
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.devin-plugin/plugin.json +1 -1
- package/.github/plugin/plugin.json +1 -1
- package/README.md +3 -3
- package/gemini-extension.json +1 -1
- package/lib/cli/commands/global.mjs +34 -26
- package/package.json +1 -1
- package/plugin.yaml +1 -1
package/README.md
CHANGED
|
@@ -236,10 +236,10 @@ asc global --antigravity
|
|
|
236
236
|
```
|
|
237
237
|
|
|
238
238
|
This installs:
|
|
239
|
-
- **
|
|
239
|
+
- **Plugin bundle** (skills: `/asc-review`, `/asc-audit`, `/asc-refactor`, `/asc-reference`, `/asc-debt`, etc.) → `~/.gemini/antigravity-ide/plugins/agentic-senior-core/`
|
|
240
240
|
- **Rules** → `~/.gemini/GEMINI.md` (appended if you already have content; ASC section is replaced on re-runs)
|
|
241
241
|
|
|
242
|
-
If you previously installed to `~/.gemini/config/plugins/agentic-senior-core/` (v5.8.
|
|
242
|
+
If you previously installed to `~/.gemini/config/plugins/agentic-senior-core/` or `~/.gemini/config/skills/` (v5.8.3 or earlier), the old paths are cleaned up automatically.
|
|
243
243
|
|
|
244
244
|
> Note: `npm update -g` refreshes the npm package only. The global copy does not auto-update -- re-run `asc global --antigravity` after each update.
|
|
245
245
|
|
|
@@ -289,7 +289,7 @@ asc global --all
|
|
|
289
289
|
|
|
290
290
|
| Tool | Global location | Notes |
|
|
291
291
|
|------|----------------|-------|
|
|
292
|
-
| Google Antigravity IDE | `~/.gemini/
|
|
292
|
+
| Google Antigravity IDE | `~/.gemini/antigravity-ide/plugins/agentic-senior-core/` + `~/.gemini/GEMINI.md` | Plugin bundle (rules + skills) + global rules |
|
|
293
293
|
| Cline | `~/Documents/Cline/Rules/` | Toggleable in the Cline rules panel |
|
|
294
294
|
| Kilo Code | `~/.kilocode/rules/` | Or point `instructions:` in `~/.config/kilo/kilo.jsonc` at the npm package path — that variant auto-updates |
|
|
295
295
|
| Kiro | `~/.kiro/steering/` | Some builds have global-steering loading bugs; fall back to `asc adapter --kiro` |
|
package/gemini-extension.json
CHANGED
|
@@ -20,18 +20,21 @@ function vscodeUserPromptsDirectory() {
|
|
|
20
20
|
return path.join(HOME, '.config', 'Code', 'User', 'prompts');
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
const
|
|
23
|
+
const OLD_PATHS = [
|
|
24
|
+
path.join(HOME, '.gemini', 'config', 'plugins', 'agentic-senior-core'),
|
|
25
|
+
path.join(HOME, '.gemini', 'config', 'skills'),
|
|
26
|
+
];
|
|
24
27
|
|
|
25
28
|
const GLOBAL_TARGETS = {
|
|
26
29
|
antigravity: {
|
|
27
30
|
label: 'Google Antigravity IDE',
|
|
28
31
|
kind: 'antigravity-ide',
|
|
29
|
-
|
|
32
|
+
pluginSourcePath: '.agents/plugins/agentic-senior-core',
|
|
30
33
|
rulesSourcePath: '.agents/rules/agentic-senior-core.md',
|
|
31
|
-
|
|
34
|
+
pluginTargetPath: () => path.join(HOME, '.gemini', 'antigravity-ide', 'plugins', 'agentic-senior-core'),
|
|
32
35
|
rulesTargetPath: () => path.join(HOME, '.gemini', 'GEMINI.md'),
|
|
33
|
-
targetPath: () =>
|
|
34
|
-
note: '
|
|
36
|
+
targetPath: () => path.join(HOME, '.gemini', 'antigravity-ide', 'plugins', 'agentic-senior-core'),
|
|
37
|
+
note: 'Plugin bundle (rules + skills) in ~/.gemini/antigravity-ide/plugins/, rules also in ~/.gemini/GEMINI.md.',
|
|
35
38
|
},
|
|
36
39
|
cline: {
|
|
37
40
|
label: 'Cline',
|
|
@@ -153,13 +156,13 @@ async function installGlobalTarget(targetKey) {
|
|
|
153
156
|
}
|
|
154
157
|
|
|
155
158
|
async function installAntigravityIde(target) {
|
|
156
|
-
const
|
|
159
|
+
const pluginSource = path.join(REPOSITORY_ROOT, target.pluginSourcePath);
|
|
157
160
|
const rulesSource = path.join(REPOSITORY_ROOT, target.rulesSourcePath);
|
|
158
|
-
const
|
|
161
|
+
const pluginTargetPath = target.pluginTargetPath();
|
|
159
162
|
const rulesTargetPath = target.rulesTargetPath();
|
|
160
163
|
|
|
161
|
-
if (!(await pathExists(
|
|
162
|
-
console.error(` ${target.label}:
|
|
164
|
+
if (!(await pathExists(pluginSource))) {
|
|
165
|
+
console.error(` ${target.label}: plugin source not found (${pluginSource}) ... FAIL`);
|
|
163
166
|
return false;
|
|
164
167
|
}
|
|
165
168
|
if (!(await pathExists(rulesSource))) {
|
|
@@ -167,17 +170,10 @@ async function installAntigravityIde(target) {
|
|
|
167
170
|
return false;
|
|
168
171
|
}
|
|
169
172
|
|
|
170
|
-
// Copy
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
await fs.mkdir(skillsTargetDir, { recursive: true });
|
|
175
|
-
for (const skillName of skillNames) {
|
|
176
|
-
const source = path.join(skillsSource, skillName);
|
|
177
|
-
const destination = path.join(skillsTargetDir, skillName);
|
|
178
|
-
await fs.cp(source, destination, { recursive: true, force: true });
|
|
179
|
-
}
|
|
180
|
-
console.log(` ${target.label}: ${skillNames.length} skills -> ${skillsTargetDir} ... OK`);
|
|
173
|
+
// Copy plugin bundle (plugin.json + skills/) to ~/.gemini/antigravity-ide/plugins/agentic-senior-core/
|
|
174
|
+
await fs.mkdir(path.dirname(pluginTargetPath), { recursive: true });
|
|
175
|
+
await fs.cp(pluginSource, pluginTargetPath, { recursive: true, force: true });
|
|
176
|
+
console.log(` ${target.label}: plugin -> ${pluginTargetPath} ... OK`);
|
|
181
177
|
|
|
182
178
|
// Append rules to ~/.gemini/GEMINI.md (guarded: replace ASC section if present, append if not)
|
|
183
179
|
const rulesContent = await fs.readFile(rulesSource, 'utf8');
|
|
@@ -191,13 +187,11 @@ async function installAntigravityIde(target) {
|
|
|
191
187
|
if (await pathExists(rulesTargetPath)) {
|
|
192
188
|
const existingContent = await fs.readFile(rulesTargetPath, 'utf8');
|
|
193
189
|
if (existingContent.includes(ASC_MARKER)) {
|
|
194
|
-
// Replace existing ASC section (from marker to end-of-file or next top-level heading)
|
|
195
190
|
const markerIndex = existingContent.indexOf(ASC_MARKER);
|
|
196
191
|
const beforeAsc = existingContent.substring(0, markerIndex).trimEnd();
|
|
197
192
|
await fs.writeFile(rulesTargetPath, beforeAsc + ascSection);
|
|
198
193
|
console.log(` ${target.label}: rules updated in ${rulesTargetPath} ... OK`);
|
|
199
194
|
} else {
|
|
200
|
-
// Append to existing content
|
|
201
195
|
await fs.writeFile(rulesTargetPath, existingContent.trimEnd() + ascSection);
|
|
202
196
|
console.log(` ${target.label}: rules appended to ${rulesTargetPath} ... OK`);
|
|
203
197
|
}
|
|
@@ -206,10 +200,24 @@ async function installAntigravityIde(target) {
|
|
|
206
200
|
console.log(` ${target.label}: rules -> ${rulesTargetPath} ... OK`);
|
|
207
201
|
}
|
|
208
202
|
|
|
209
|
-
// Clean up old
|
|
210
|
-
|
|
211
|
-
await
|
|
212
|
-
|
|
203
|
+
// Clean up old paths from previous versions
|
|
204
|
+
for (const oldPath of OLD_PATHS) {
|
|
205
|
+
if (await pathExists(oldPath)) {
|
|
206
|
+
// For config/skills/, only remove ASC skill folders, not other tools' skills
|
|
207
|
+
if (oldPath.endsWith('skills')) {
|
|
208
|
+
const ASC_SKILL_NAMES = ['asc', 'asc-adapter', 'asc-add-feature', 'asc-audit', 'asc-debt', 'asc-new-project', 'asc-refactor', 'asc-reference', 'asc-review'];
|
|
209
|
+
for (const skillName of ASC_SKILL_NAMES) {
|
|
210
|
+
const skillPath = path.join(oldPath, skillName);
|
|
211
|
+
if (await pathExists(skillPath)) {
|
|
212
|
+
await fs.rm(skillPath, { recursive: true, force: true });
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
console.log(` ${target.label}: cleaned up old skills from ${oldPath}`);
|
|
216
|
+
} else {
|
|
217
|
+
await fs.rm(oldPath, { recursive: true, force: true });
|
|
218
|
+
console.log(` ${target.label}: cleaned up old path ${oldPath}`);
|
|
219
|
+
}
|
|
220
|
+
}
|
|
213
221
|
}
|
|
214
222
|
|
|
215
223
|
return true;
|
package/package.json
CHANGED
package/plugin.yaml
CHANGED