@ryuenn3123/agentic-senior-core 5.5.0 → 5.6.0
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 +29 -2
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
- package/plugin.yaml +1 -1
package/README.md
CHANGED
|
@@ -230,8 +230,13 @@ Antigravity IDE reads it automatically with `trigger: always_on`.
|
|
|
230
230
|
Copy the plugin bundle to Antigravity's global plugin directory:
|
|
231
231
|
|
|
232
232
|
```powershell
|
|
233
|
-
# Windows
|
|
234
|
-
|
|
233
|
+
# Windows (PowerShell)
|
|
234
|
+
Copy-Item -Recurse -Force "$env:APPDATA\npm\node_modules\@ryuenn3123\agentic-senior-core\.agents\plugins\agentic-senior-core" "$env:USERPROFILE\.gemini\config\plugins\agentic-senior-core"
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
```cmd
|
|
238
|
+
:: Windows (cmd.exe)
|
|
239
|
+
xcopy /E /I /Y "%APPDATA%\npm\node_modules\@ryuenn3123\agentic-senior-core\.agents\plugins\agentic-senior-core" "%USERPROFILE%\.gemini\config\plugins\agentic-senior-core"
|
|
235
240
|
```
|
|
236
241
|
|
|
237
242
|
```bash
|
|
@@ -241,6 +246,8 @@ cp -r "$(npm root -g)/@ryuenn3123/agentic-senior-core/.agents/plugins/agentic-se
|
|
|
241
246
|
|
|
242
247
|
The plugin bundle includes rules, skills (`/asc-review`, `/asc-audit`, `/asc-refactor`, `/asc-reference`, `/asc-debt`), and `plugin.json`.
|
|
243
248
|
|
|
249
|
+
> Note: `npm update -g` refreshes the npm package only. The global plugin copy does not auto-update -- re-run the copy command above after each update.
|
|
250
|
+
|
|
244
251
|
</details>
|
|
245
252
|
|
|
246
253
|
<details>
|
|
@@ -379,6 +386,26 @@ Use them together. No conflicts.
|
|
|
379
386
|
|
|
380
387
|
---
|
|
381
388
|
|
|
389
|
+
## Benchmarks
|
|
390
|
+
|
|
391
|
+
Measured on `claude-opus-4-6` using headless Claude Code sessions against real tasks.
|
|
392
|
+
|
|
393
|
+
| | LOC | Tokens | Cost | Duration | Safety |
|
|
394
|
+
|---|---|---|---|---|---|
|
|
395
|
+
| **Simple tasks** | 0% | -3% to -8% | -1% | -2% to -13% | 100% |
|
|
396
|
+
| **Complex tasks** | **-18%** | **-30%** | **-42%** | **-18%** | 100% |
|
|
397
|
+
|
|
398
|
+
On complex, ambiguous tasks (auth systems, insecure CRUD refactors) — where over-engineering typically occurs — ASC produces **18% less code**, uses **30% fewer tokens**, costs **42% less**, and finishes **18% faster**.
|
|
399
|
+
|
|
400
|
+
On trivial tasks the model is already concise, so gains are marginal.
|
|
401
|
+
|
|
402
|
+
Full methodology and raw data: [`benchmarks/RESULTS.md`](benchmarks/RESULTS.md)
|
|
403
|
+
|
|
404
|
+
> Model: `claude-opus-4-6` · n=1-2 per task · Baseline = Claude without rules (not zero-prompt).
|
|
405
|
+
> Opus is inherently disciplined — gains on more verbose models would likely be larger.
|
|
406
|
+
|
|
407
|
+
---
|
|
408
|
+
|
|
382
409
|
## Migration from v4.x
|
|
383
410
|
|
|
384
411
|
v5.0 is a breaking change. The per-project system (`.agent-context/`, bridge files, project scaffolding) is replaced by the universal plugin system.
|
package/gemini-extension.json
CHANGED
package/package.json
CHANGED
package/plugin.yaml
CHANGED