@ryuenn3123/agentic-senior-core 5.2.0 → 5.3.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/.agents/plugins/agentic-senior-core/skills/asc-adapter/SKILL.md +37 -0
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.continue/rules/agentic-senior-core.md +94 -0
- package/.devin/rules/agentic-senior-core.md +94 -0
- package/.devin-plugin/plugin.json +1 -1
- package/.github/plugin/plugin.json +1 -1
- package/.kilocode/rules/agentic-senior-core.md +94 -0
- package/.openhands/microagents/agentic-senior-core.md +94 -0
- package/.roo/rules/agentic-senior-core.md +94 -0
- package/.zed/rules/agentic-senior-core.md +94 -0
- package/CONVENTIONS.md +94 -0
- package/README.md +117 -14
- package/bin/agentic-senior-core.js +13 -5
- package/gemini-extension.json +1 -1
- package/lib/cli/commands/adapter.mjs +37 -2
- package/lib/cli/commands/status.mjs +98 -18
- package/lib/cli/commands/uninstall.mjs +80 -0
- package/package.json +16 -1
- package/skills/asc-adapter/SKILL.md +37 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ryuenn3123/agentic-senior-core",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Universal AI coding rules. Write code like a staff engineer, not a junior.",
|
|
6
6
|
"bin": {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"bin/",
|
|
13
13
|
"lib/cli/commands/adapter.mjs",
|
|
14
14
|
"lib/cli/commands/clean.mjs",
|
|
15
|
+
"lib/cli/commands/uninstall.mjs",
|
|
15
16
|
"lib/cli/commands/status.mjs",
|
|
16
17
|
"lib/cli/commands/mcp.mjs",
|
|
17
18
|
"lib/cli/ascx/",
|
|
@@ -25,8 +26,15 @@
|
|
|
25
26
|
".opencode/",
|
|
26
27
|
".cursor/rules/",
|
|
27
28
|
".windsurf/rules/",
|
|
29
|
+
".devin/rules/",
|
|
28
30
|
".clinerules/",
|
|
29
31
|
".kiro/steering/",
|
|
32
|
+
".continue/rules/",
|
|
33
|
+
".zed/rules/",
|
|
34
|
+
".kilocode/rules/",
|
|
35
|
+
".roo/rules/",
|
|
36
|
+
".openhands/microagents/",
|
|
37
|
+
"CONVENTIONS.md",
|
|
30
38
|
"gemini-extension.json",
|
|
31
39
|
"plugin.yaml",
|
|
32
40
|
"__init__.py",
|
|
@@ -63,6 +71,13 @@
|
|
|
63
71
|
"hermes",
|
|
64
72
|
"opencode",
|
|
65
73
|
"openclaw",
|
|
74
|
+
"zed",
|
|
75
|
+
"continue",
|
|
76
|
+
"aider",
|
|
77
|
+
"kilocode",
|
|
78
|
+
"roo-code",
|
|
79
|
+
"openhands",
|
|
80
|
+
"antigravity",
|
|
66
81
|
"plugin",
|
|
67
82
|
"universal",
|
|
68
83
|
"clean-code",
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# ASC Adapter
|
|
2
|
+
|
|
3
|
+
Detect installed AI coding hosts and generate adapter files for the current project.
|
|
4
|
+
|
|
5
|
+
## When to use
|
|
6
|
+
|
|
7
|
+
Run this when setting up a new project or when a developer wants ASC rules active across all their AI coding tools.
|
|
8
|
+
|
|
9
|
+
## Steps
|
|
10
|
+
|
|
11
|
+
1. Run `asc status` to detect which AI coding hosts are installed on this system.
|
|
12
|
+
2. Check which adapter files already exist in the current project directory.
|
|
13
|
+
3. For any detected host that is missing an adapter, run `asc adapter --<host>` to generate it.
|
|
14
|
+
4. Use `asc adapter --all` to generate adapters for all supported hosts at once.
|
|
15
|
+
|
|
16
|
+
## Supported hosts
|
|
17
|
+
|
|
18
|
+
Plugin hosts (always-on, no adapter needed): Claude Code, Codex CLI, Gemini CLI, Antigravity CLI, Copilot CLI, Devin CLI, Hermes, OpenCode, OpenClaw.
|
|
19
|
+
|
|
20
|
+
Adapter hosts (one file per project): Cursor, Devin Desktop, Cline, GitHub Copilot, Kiro, Continue, Zed, Aider, Kilo Code, Roo Code, OpenHands.
|
|
21
|
+
|
|
22
|
+
## Commands
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
asc status # Show detected hosts
|
|
26
|
+
asc adapter --all # Generate all adapters
|
|
27
|
+
asc adapter --cursor # Generate for specific host
|
|
28
|
+
asc uninstall # Remove all ASC adapter files
|
|
29
|
+
asc uninstall --dry-run # Preview what would be removed
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Notes
|
|
33
|
+
|
|
34
|
+
- Adapter files contain the ASC universal coding rules, compressed to fit within each host's size limits.
|
|
35
|
+
- Cursor uses `.mdc` format with `alwaysApply: true` frontmatter.
|
|
36
|
+
- Windsurf is now Devin Desktop. Use `--devin` for the preferred path, `--windsurf` for legacy.
|
|
37
|
+
- Zed also reads `AGENTS.md` natively, so the adapter is optional.
|