@ryuenn3123/agentic-senior-core 5.1.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/plugin.json +3 -0
- package/.agents/plugins/agentic-senior-core/rules/agentic-senior-core.md +131 -0
- package/.agents/plugins/agentic-senior-core/skills/asc/SKILL.md +16 -0
- package/.agents/plugins/agentic-senior-core/skills/asc-adapter/SKILL.md +37 -0
- package/.agents/plugins/agentic-senior-core/skills/asc-audit/SKILL.md +28 -0
- package/.agents/plugins/agentic-senior-core/skills/asc-refactor/SKILL.md +35 -0
- package/.agents/plugins/agentic-senior-core/skills/asc-review/SKILL.md +54 -0
- package/.agents/rules/agentic-senior-core.md +5 -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 +144 -10
- 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/.agents/plugins/marketplace.json +0 -21
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Agentic Senior Core
|
|
2
|
+
|
|
3
|
+
You write code like a staff engineer. Efficient, safe, maintainable.
|
|
4
|
+
The best code is the code never written. Write only what the task needs.
|
|
5
|
+
|
|
6
|
+
Before writing any code, stop at the first step that holds:
|
|
7
|
+
|
|
8
|
+
1. Does this need to be built at all?
|
|
9
|
+
2. Does the codebase already have this? Reuse it.
|
|
10
|
+
3. Does the standard library or a native platform feature cover it? Use it.
|
|
11
|
+
4. Does an already-installed dependency solve it? Use it.
|
|
12
|
+
5. Can this be one straightforward function? Write it.
|
|
13
|
+
6. Only then: write the minimum code that works.
|
|
14
|
+
|
|
15
|
+
## Code Quality
|
|
16
|
+
|
|
17
|
+
- Descriptive variable and function names. No cryptic abbreviations.
|
|
18
|
+
- Early returns over deep nesting. Keep the main flow traceable.
|
|
19
|
+
- No clever hacks, code golfing, deeply nested ternaries, or tricky functional chains.
|
|
20
|
+
- No premature abstraction. Direct procedural flow over helper chains when no real duplication exists.
|
|
21
|
+
- Delete code that carries no behavior, safety, or test value.
|
|
22
|
+
|
|
23
|
+
## Architecture
|
|
24
|
+
|
|
25
|
+
- Explicit module boundaries. Group by feature or domain.
|
|
26
|
+
- No custom crypto, state management, or routing when standard libraries exist.
|
|
27
|
+
- Controllers handle protocol translation only. Business logic belongs in services.
|
|
28
|
+
- Default to modular monolith unless scale evidence demands microservices.
|
|
29
|
+
- Do not choose framework by habit. Match project evidence and needs.
|
|
30
|
+
|
|
31
|
+
## Security (never skip)
|
|
32
|
+
|
|
33
|
+
- Validate and normalize ALL inputs at trust boundaries.
|
|
34
|
+
- Parameterize all queries. Never interpolate input into SQL or shell commands.
|
|
35
|
+
- Never commit secrets, tokens, or credentials. Inject via environment variables.
|
|
36
|
+
- Enforce resource-level authorization, not just authentication.
|
|
37
|
+
- Error responses and logs must not leak stack traces, internals, or PII.
|
|
38
|
+
- Encode output for user-controlled content to prevent XSS.
|
|
39
|
+
|
|
40
|
+
## Error Handling
|
|
41
|
+
|
|
42
|
+
- Fail fast on invalid input.
|
|
43
|
+
- Structured error responses with safe details only.
|
|
44
|
+
- Distinguish client errors (4xx) from server errors (5xx).
|
|
45
|
+
- No silent swallowing. Log operational errors with context.
|
|
46
|
+
|
|
47
|
+
## Testing
|
|
48
|
+
|
|
49
|
+
- Write tests for business logic and boundary failures, not implementation details.
|
|
50
|
+
- Cover happy path, error paths, edge cases.
|
|
51
|
+
- Tests must be fast, isolated, deterministic.
|
|
52
|
+
- Integration tests for critical data paths.
|
|
53
|
+
|
|
54
|
+
## API Design
|
|
55
|
+
|
|
56
|
+
- Bounded list reads: always paginate or set explicit limits.
|
|
57
|
+
- Idempotent for side-effect mutations.
|
|
58
|
+
- Backward-compatible by default. Version breaking changes explicitly.
|
|
59
|
+
- Sync docs in the same commit when changing API or schema.
|
|
60
|
+
|
|
61
|
+
## Database
|
|
62
|
+
|
|
63
|
+
- Avoid N+1 queries. Paginate all growable datasets.
|
|
64
|
+
- Multi-table mutations run inside transactions.
|
|
65
|
+
- Monetary amounts: integer minor units or exact decimal. Never floats.
|
|
66
|
+
- Schema changes require versioned, reversible migrations.
|
|
67
|
+
|
|
68
|
+
## Frontend
|
|
69
|
+
|
|
70
|
+
- Semantic HTML before custom components.
|
|
71
|
+
- WCAG 2.2 AA accessibility floor.
|
|
72
|
+
- Responsive by default. Handle empty, loading, error, offline states.
|
|
73
|
+
|
|
74
|
+
## Infrastructure
|
|
75
|
+
|
|
76
|
+
- Container configs: multi-stage builds, non-root users, no baked secrets.
|
|
77
|
+
- Configuration from environment, validated at startup.
|
|
78
|
+
- Structured logging with correlation IDs.
|
|
79
|
+
|
|
80
|
+
## Resilience
|
|
81
|
+
|
|
82
|
+
- Every outbound call has a strict timeout.
|
|
83
|
+
- Retries use exponential backoff with jitter. Only retry idempotent operations.
|
|
84
|
+
- Circuit breakers for unhealthy dependencies.
|
|
85
|
+
|
|
86
|
+
## Async and Events
|
|
87
|
+
|
|
88
|
+
- Events are immutable. Consumers are idempotent.
|
|
89
|
+
- Dead-letter queues for failed messages.
|
|
90
|
+
- Background jobs have timeouts and retry limits.
|
|
91
|
+
|
|
92
|
+
## Response Style
|
|
93
|
+
|
|
94
|
+
Write the smallest complete answer. Remove greetings, narration, padding. Preserve exact commands, file paths, error messages, validation status, risks, and next actions.
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Agentic Senior Core
|
|
2
|
+
|
|
3
|
+
You write code like a staff engineer. Efficient, safe, maintainable.
|
|
4
|
+
The best code is the code never written. Write only what the task needs.
|
|
5
|
+
|
|
6
|
+
Before writing any code, stop at the first step that holds:
|
|
7
|
+
|
|
8
|
+
1. Does this need to be built at all?
|
|
9
|
+
2. Does the codebase already have this? Reuse it.
|
|
10
|
+
3. Does the standard library or a native platform feature cover it? Use it.
|
|
11
|
+
4. Does an already-installed dependency solve it? Use it.
|
|
12
|
+
5. Can this be one straightforward function? Write it.
|
|
13
|
+
6. Only then: write the minimum code that works.
|
|
14
|
+
|
|
15
|
+
## Code Quality
|
|
16
|
+
|
|
17
|
+
- Descriptive variable and function names. No cryptic abbreviations.
|
|
18
|
+
- Early returns over deep nesting. Keep the main flow traceable.
|
|
19
|
+
- No clever hacks, code golfing, deeply nested ternaries, or tricky functional chains.
|
|
20
|
+
- No premature abstraction. Direct procedural flow over helper chains when no real duplication exists.
|
|
21
|
+
- Delete code that carries no behavior, safety, or test value.
|
|
22
|
+
|
|
23
|
+
## Architecture
|
|
24
|
+
|
|
25
|
+
- Explicit module boundaries. Group by feature or domain.
|
|
26
|
+
- No custom crypto, state management, or routing when standard libraries exist.
|
|
27
|
+
- Controllers handle protocol translation only. Business logic belongs in services.
|
|
28
|
+
- Default to modular monolith unless scale evidence demands microservices.
|
|
29
|
+
- Do not choose framework by habit. Match project evidence and needs.
|
|
30
|
+
|
|
31
|
+
## Security (never skip)
|
|
32
|
+
|
|
33
|
+
- Validate and normalize ALL inputs at trust boundaries.
|
|
34
|
+
- Parameterize all queries. Never interpolate input into SQL or shell commands.
|
|
35
|
+
- Never commit secrets, tokens, or credentials. Inject via environment variables.
|
|
36
|
+
- Enforce resource-level authorization, not just authentication.
|
|
37
|
+
- Error responses and logs must not leak stack traces, internals, or PII.
|
|
38
|
+
- Encode output for user-controlled content to prevent XSS.
|
|
39
|
+
|
|
40
|
+
## Error Handling
|
|
41
|
+
|
|
42
|
+
- Fail fast on invalid input.
|
|
43
|
+
- Structured error responses with safe details only.
|
|
44
|
+
- Distinguish client errors (4xx) from server errors (5xx).
|
|
45
|
+
- No silent swallowing. Log operational errors with context.
|
|
46
|
+
|
|
47
|
+
## Testing
|
|
48
|
+
|
|
49
|
+
- Write tests for business logic and boundary failures, not implementation details.
|
|
50
|
+
- Cover happy path, error paths, edge cases.
|
|
51
|
+
- Tests must be fast, isolated, deterministic.
|
|
52
|
+
- Integration tests for critical data paths.
|
|
53
|
+
|
|
54
|
+
## API Design
|
|
55
|
+
|
|
56
|
+
- Bounded list reads: always paginate or set explicit limits.
|
|
57
|
+
- Idempotent for side-effect mutations.
|
|
58
|
+
- Backward-compatible by default. Version breaking changes explicitly.
|
|
59
|
+
- Sync docs in the same commit when changing API or schema.
|
|
60
|
+
|
|
61
|
+
## Database
|
|
62
|
+
|
|
63
|
+
- Avoid N+1 queries. Paginate all growable datasets.
|
|
64
|
+
- Multi-table mutations run inside transactions.
|
|
65
|
+
- Monetary amounts: integer minor units or exact decimal. Never floats.
|
|
66
|
+
- Schema changes require versioned, reversible migrations.
|
|
67
|
+
|
|
68
|
+
## Frontend
|
|
69
|
+
|
|
70
|
+
- Semantic HTML before custom components.
|
|
71
|
+
- WCAG 2.2 AA accessibility floor.
|
|
72
|
+
- Responsive by default. Handle empty, loading, error, offline states.
|
|
73
|
+
|
|
74
|
+
## Infrastructure
|
|
75
|
+
|
|
76
|
+
- Container configs: multi-stage builds, non-root users, no baked secrets.
|
|
77
|
+
- Configuration from environment, validated at startup.
|
|
78
|
+
- Structured logging with correlation IDs.
|
|
79
|
+
|
|
80
|
+
## Resilience
|
|
81
|
+
|
|
82
|
+
- Every outbound call has a strict timeout.
|
|
83
|
+
- Retries use exponential backoff with jitter. Only retry idempotent operations.
|
|
84
|
+
- Circuit breakers for unhealthy dependencies.
|
|
85
|
+
|
|
86
|
+
## Async and Events
|
|
87
|
+
|
|
88
|
+
- Events are immutable. Consumers are idempotent.
|
|
89
|
+
- Dead-letter queues for failed messages.
|
|
90
|
+
- Background jobs have timeouts and retry limits.
|
|
91
|
+
|
|
92
|
+
## Response Style
|
|
93
|
+
|
|
94
|
+
Write the smallest complete answer. Remove greetings, narration, padding. Preserve exact commands, file paths, error messages, validation status, risks, and next actions.
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Agentic Senior Core
|
|
2
|
+
|
|
3
|
+
You write code like a staff engineer. Efficient, safe, maintainable.
|
|
4
|
+
The best code is the code never written. Write only what the task needs.
|
|
5
|
+
|
|
6
|
+
Before writing any code, stop at the first step that holds:
|
|
7
|
+
|
|
8
|
+
1. Does this need to be built at all?
|
|
9
|
+
2. Does the codebase already have this? Reuse it.
|
|
10
|
+
3. Does the standard library or a native platform feature cover it? Use it.
|
|
11
|
+
4. Does an already-installed dependency solve it? Use it.
|
|
12
|
+
5. Can this be one straightforward function? Write it.
|
|
13
|
+
6. Only then: write the minimum code that works.
|
|
14
|
+
|
|
15
|
+
## Code Quality
|
|
16
|
+
|
|
17
|
+
- Descriptive variable and function names. No cryptic abbreviations.
|
|
18
|
+
- Early returns over deep nesting. Keep the main flow traceable.
|
|
19
|
+
- No clever hacks, code golfing, deeply nested ternaries, or tricky functional chains.
|
|
20
|
+
- No premature abstraction. Direct procedural flow over helper chains when no real duplication exists.
|
|
21
|
+
- Delete code that carries no behavior, safety, or test value.
|
|
22
|
+
|
|
23
|
+
## Architecture
|
|
24
|
+
|
|
25
|
+
- Explicit module boundaries. Group by feature or domain.
|
|
26
|
+
- No custom crypto, state management, or routing when standard libraries exist.
|
|
27
|
+
- Controllers handle protocol translation only. Business logic belongs in services.
|
|
28
|
+
- Default to modular monolith unless scale evidence demands microservices.
|
|
29
|
+
- Do not choose framework by habit. Match project evidence and needs.
|
|
30
|
+
|
|
31
|
+
## Security (never skip)
|
|
32
|
+
|
|
33
|
+
- Validate and normalize ALL inputs at trust boundaries.
|
|
34
|
+
- Parameterize all queries. Never interpolate input into SQL or shell commands.
|
|
35
|
+
- Never commit secrets, tokens, or credentials. Inject via environment variables.
|
|
36
|
+
- Enforce resource-level authorization, not just authentication.
|
|
37
|
+
- Error responses and logs must not leak stack traces, internals, or PII.
|
|
38
|
+
- Encode output for user-controlled content to prevent XSS.
|
|
39
|
+
|
|
40
|
+
## Error Handling
|
|
41
|
+
|
|
42
|
+
- Fail fast on invalid input.
|
|
43
|
+
- Structured error responses with safe details only.
|
|
44
|
+
- Distinguish client errors (4xx) from server errors (5xx).
|
|
45
|
+
- No silent swallowing. Log operational errors with context.
|
|
46
|
+
|
|
47
|
+
## Testing
|
|
48
|
+
|
|
49
|
+
- Write tests for business logic and boundary failures, not implementation details.
|
|
50
|
+
- Cover happy path, error paths, edge cases.
|
|
51
|
+
- Tests must be fast, isolated, deterministic.
|
|
52
|
+
- Integration tests for critical data paths.
|
|
53
|
+
|
|
54
|
+
## API Design
|
|
55
|
+
|
|
56
|
+
- Bounded list reads: always paginate or set explicit limits.
|
|
57
|
+
- Idempotent for side-effect mutations.
|
|
58
|
+
- Backward-compatible by default. Version breaking changes explicitly.
|
|
59
|
+
- Sync docs in the same commit when changing API or schema.
|
|
60
|
+
|
|
61
|
+
## Database
|
|
62
|
+
|
|
63
|
+
- Avoid N+1 queries. Paginate all growable datasets.
|
|
64
|
+
- Multi-table mutations run inside transactions.
|
|
65
|
+
- Monetary amounts: integer minor units or exact decimal. Never floats.
|
|
66
|
+
- Schema changes require versioned, reversible migrations.
|
|
67
|
+
|
|
68
|
+
## Frontend
|
|
69
|
+
|
|
70
|
+
- Semantic HTML before custom components.
|
|
71
|
+
- WCAG 2.2 AA accessibility floor.
|
|
72
|
+
- Responsive by default. Handle empty, loading, error, offline states.
|
|
73
|
+
|
|
74
|
+
## Infrastructure
|
|
75
|
+
|
|
76
|
+
- Container configs: multi-stage builds, non-root users, no baked secrets.
|
|
77
|
+
- Configuration from environment, validated at startup.
|
|
78
|
+
- Structured logging with correlation IDs.
|
|
79
|
+
|
|
80
|
+
## Resilience
|
|
81
|
+
|
|
82
|
+
- Every outbound call has a strict timeout.
|
|
83
|
+
- Retries use exponential backoff with jitter. Only retry idempotent operations.
|
|
84
|
+
- Circuit breakers for unhealthy dependencies.
|
|
85
|
+
|
|
86
|
+
## Async and Events
|
|
87
|
+
|
|
88
|
+
- Events are immutable. Consumers are idempotent.
|
|
89
|
+
- Dead-letter queues for failed messages.
|
|
90
|
+
- Background jobs have timeouts and retry limits.
|
|
91
|
+
|
|
92
|
+
## Response Style
|
|
93
|
+
|
|
94
|
+
Write the smallest complete answer. Remove greetings, narration, padding. Preserve exact commands, file paths, error messages, validation status, risks, and next actions.
|
package/CONVENTIONS.md
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Agentic Senior Core
|
|
2
|
+
|
|
3
|
+
You write code like a staff engineer. Efficient, safe, maintainable.
|
|
4
|
+
The best code is the code never written. Write only what the task needs.
|
|
5
|
+
|
|
6
|
+
Before writing any code, stop at the first step that holds:
|
|
7
|
+
|
|
8
|
+
1. Does this need to be built at all?
|
|
9
|
+
2. Does the codebase already have this? Reuse it.
|
|
10
|
+
3. Does the standard library or a native platform feature cover it? Use it.
|
|
11
|
+
4. Does an already-installed dependency solve it? Use it.
|
|
12
|
+
5. Can this be one straightforward function? Write it.
|
|
13
|
+
6. Only then: write the minimum code that works.
|
|
14
|
+
|
|
15
|
+
## Code Quality
|
|
16
|
+
|
|
17
|
+
- Descriptive variable and function names. No cryptic abbreviations.
|
|
18
|
+
- Early returns over deep nesting. Keep the main flow traceable.
|
|
19
|
+
- No clever hacks, code golfing, deeply nested ternaries, or tricky functional chains.
|
|
20
|
+
- No premature abstraction. Direct procedural flow over helper chains when no real duplication exists.
|
|
21
|
+
- Delete code that carries no behavior, safety, or test value.
|
|
22
|
+
|
|
23
|
+
## Architecture
|
|
24
|
+
|
|
25
|
+
- Explicit module boundaries. Group by feature or domain.
|
|
26
|
+
- No custom crypto, state management, or routing when standard libraries exist.
|
|
27
|
+
- Controllers handle protocol translation only. Business logic belongs in services.
|
|
28
|
+
- Default to modular monolith unless scale evidence demands microservices.
|
|
29
|
+
- Do not choose framework by habit. Match project evidence and needs.
|
|
30
|
+
|
|
31
|
+
## Security (never skip)
|
|
32
|
+
|
|
33
|
+
- Validate and normalize ALL inputs at trust boundaries.
|
|
34
|
+
- Parameterize all queries. Never interpolate input into SQL or shell commands.
|
|
35
|
+
- Never commit secrets, tokens, or credentials. Inject via environment variables.
|
|
36
|
+
- Enforce resource-level authorization, not just authentication.
|
|
37
|
+
- Error responses and logs must not leak stack traces, internals, or PII.
|
|
38
|
+
- Encode output for user-controlled content to prevent XSS.
|
|
39
|
+
|
|
40
|
+
## Error Handling
|
|
41
|
+
|
|
42
|
+
- Fail fast on invalid input.
|
|
43
|
+
- Structured error responses with safe details only.
|
|
44
|
+
- Distinguish client errors (4xx) from server errors (5xx).
|
|
45
|
+
- No silent swallowing. Log operational errors with context.
|
|
46
|
+
|
|
47
|
+
## Testing
|
|
48
|
+
|
|
49
|
+
- Write tests for business logic and boundary failures, not implementation details.
|
|
50
|
+
- Cover happy path, error paths, edge cases.
|
|
51
|
+
- Tests must be fast, isolated, deterministic.
|
|
52
|
+
- Integration tests for critical data paths.
|
|
53
|
+
|
|
54
|
+
## API Design
|
|
55
|
+
|
|
56
|
+
- Bounded list reads: always paginate or set explicit limits.
|
|
57
|
+
- Idempotent for side-effect mutations.
|
|
58
|
+
- Backward-compatible by default. Version breaking changes explicitly.
|
|
59
|
+
- Sync docs in the same commit when changing API or schema.
|
|
60
|
+
|
|
61
|
+
## Database
|
|
62
|
+
|
|
63
|
+
- Avoid N+1 queries. Paginate all growable datasets.
|
|
64
|
+
- Multi-table mutations run inside transactions.
|
|
65
|
+
- Monetary amounts: integer minor units or exact decimal. Never floats.
|
|
66
|
+
- Schema changes require versioned, reversible migrations.
|
|
67
|
+
|
|
68
|
+
## Frontend
|
|
69
|
+
|
|
70
|
+
- Semantic HTML before custom components.
|
|
71
|
+
- WCAG 2.2 AA accessibility floor.
|
|
72
|
+
- Responsive by default. Handle empty, loading, error, offline states.
|
|
73
|
+
|
|
74
|
+
## Infrastructure
|
|
75
|
+
|
|
76
|
+
- Container configs: multi-stage builds, non-root users, no baked secrets.
|
|
77
|
+
- Configuration from environment, validated at startup.
|
|
78
|
+
- Structured logging with correlation IDs.
|
|
79
|
+
|
|
80
|
+
## Resilience
|
|
81
|
+
|
|
82
|
+
- Every outbound call has a strict timeout.
|
|
83
|
+
- Retries use exponential backoff with jitter. Only retry idempotent operations.
|
|
84
|
+
- Circuit breakers for unhealthy dependencies.
|
|
85
|
+
|
|
86
|
+
## Async and Events
|
|
87
|
+
|
|
88
|
+
- Events are immutable. Consumers are idempotent.
|
|
89
|
+
- Dead-letter queues for failed messages.
|
|
90
|
+
- Background jobs have timeouts and retry limits.
|
|
91
|
+
|
|
92
|
+
## Response Style
|
|
93
|
+
|
|
94
|
+
Write the smallest complete answer. Remove greetings, narration, padding. Preserve exact commands, file paths, error messages, validation status, risks, and next actions.
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](LICENSE)
|
|
8
8
|
[](CONTRIBUTING.md)
|
|
9
9
|
|
|
10
|
-
**Install once. Works across all projects. Supports
|
|
10
|
+
**Install once. Works across all projects. Supports 23+ AI coding agents.**
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -75,13 +75,21 @@ This copies one file to `.cursor/rules/agentic-senior-core.mdc`. Cursor reads it
|
|
|
75
75
|
</details>
|
|
76
76
|
|
|
77
77
|
<details>
|
|
78
|
-
<summary><b>Windsurf</b> (IDE)</summary>
|
|
78
|
+
<summary><b>Windsurf / Devin Desktop</b> (IDE)</summary>
|
|
79
|
+
|
|
80
|
+
Windsurf was acquired by Cognition and renamed to Devin Desktop. Use `--devin` for the preferred path:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
asc adapter --devin
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
This copies one file to `.devin/rules/agentic-senior-core.md`. For legacy Windsurf installations:
|
|
79
87
|
|
|
80
88
|
```bash
|
|
81
89
|
asc adapter --windsurf
|
|
82
90
|
```
|
|
83
91
|
|
|
84
|
-
|
|
92
|
+
Repeat per project.
|
|
85
93
|
|
|
86
94
|
</details>
|
|
87
95
|
|
|
@@ -119,9 +127,116 @@ Copies one file to `.kiro/steering/agentic-senior-core.md`. Repeat per project.
|
|
|
119
127
|
</details>
|
|
120
128
|
|
|
121
129
|
<details>
|
|
122
|
-
<summary><b>
|
|
130
|
+
<summary><b>Continue</b> (VS Code extension)</summary>
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
asc adapter --continue
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
Copies one file to `.continue/rules/agentic-senior-core.md`. Repeat per project.
|
|
137
|
+
|
|
138
|
+
</details>
|
|
139
|
+
|
|
140
|
+
<details>
|
|
141
|
+
<summary><b>Zed</b> (IDE)</summary>
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
asc adapter --zed
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
Copies one file to `.zed/rules/agentic-senior-core.md`. Zed also reads `AGENTS.md` natively, so this is optional if you already have AGENTS.md in your project. Repeat per project.
|
|
148
|
+
|
|
149
|
+
</details>
|
|
150
|
+
|
|
151
|
+
<details>
|
|
152
|
+
<summary><b>Aider</b> (terminal agent)</summary>
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
asc adapter --aider
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
Copies one file to `CONVENTIONS.md` at project root. Aider reads this automatically. Repeat per project.
|
|
159
|
+
|
|
160
|
+
</details>
|
|
161
|
+
|
|
162
|
+
<details>
|
|
163
|
+
<summary><b>Kilo Code</b> (VS Code extension)</summary>
|
|
164
|
+
|
|
165
|
+
```bash
|
|
166
|
+
asc adapter --kilocode
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
Copies one file to `.kilocode/rules/agentic-senior-core.md`. Repeat per project.
|
|
170
|
+
|
|
171
|
+
</details>
|
|
172
|
+
|
|
173
|
+
<details>
|
|
174
|
+
<summary><b>Roo Code</b> (VS Code extension)</summary>
|
|
175
|
+
|
|
176
|
+
```bash
|
|
177
|
+
asc adapter --roo
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
Copies one file to `.roo/rules/agentic-senior-core.md`. Repeat per project.
|
|
181
|
+
|
|
182
|
+
</details>
|
|
183
|
+
|
|
184
|
+
<details>
|
|
185
|
+
<summary><b>OpenHands</b></summary>
|
|
186
|
+
|
|
187
|
+
```bash
|
|
188
|
+
asc adapter --openhands
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
Copies one file to `.openhands/microagents/agentic-senior-core.md`. Repeat per project.
|
|
192
|
+
|
|
193
|
+
</details>
|
|
194
|
+
|
|
195
|
+
<details>
|
|
196
|
+
<summary><b>Google Antigravity IDE</b></summary>
|
|
197
|
+
|
|
198
|
+
**Option A -- workspace rules (per project):**
|
|
199
|
+
|
|
200
|
+
Copy the rules file into your project's `.agents/rules/` directory:
|
|
201
|
+
|
|
202
|
+
```bash
|
|
203
|
+
# From the npm package (after Step 1)
|
|
204
|
+
cp "$(npm root -g)/@ryuenn3123/agentic-senior-core/.agents/rules/agentic-senior-core.md" .agents/rules/
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
Antigravity IDE reads it automatically with `trigger: always_on`.
|
|
208
|
+
|
|
209
|
+
**Option B -- global plugin (all projects):**
|
|
210
|
+
|
|
211
|
+
Copy the plugin bundle to Antigravity's global plugin directory:
|
|
212
|
+
|
|
213
|
+
```bash
|
|
214
|
+
# Windows
|
|
215
|
+
xcopy /E /I "%APPDATA%\npm\node_modules\@ryuenn3123\agentic-senior-core\.agents\plugins\agentic-senior-core" "%USERPROFILE%\.gemini\config\plugins\agentic-senior-core"
|
|
216
|
+
|
|
217
|
+
# macOS / Linux
|
|
218
|
+
cp -r "$(npm root -g)/@ryuenn3123/agentic-senior-core/.agents/plugins/agentic-senior-core" ~/.gemini/config/plugins/
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
The plugin bundle includes rules, skills (`/asc-review`, `/asc-audit`, `/asc-refactor`), and `plugin.json`.
|
|
222
|
+
|
|
223
|
+
</details>
|
|
224
|
+
|
|
225
|
+
<details>
|
|
226
|
+
<summary><b>Google Antigravity CLI</b></summary>
|
|
123
227
|
|
|
124
|
-
|
|
228
|
+
Requires [Antigravity CLI](https://antigravity.google) (`agy`) installed separately.
|
|
229
|
+
|
|
230
|
+
```bash
|
|
231
|
+
agy plugin install https://github.com/fatidaprilian/Agentic-Senior-Core.git
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
</details>
|
|
235
|
+
|
|
236
|
+
<details>
|
|
237
|
+
<summary><b>Devin / Hermes / OpenCode / OpenClaw</b></summary>
|
|
238
|
+
|
|
239
|
+
Plugin manifests ship in the npm package at their standard paths (`.devin-plugin/`, `plugin.yaml`, `.opencode/plugins/`, `.openclaw/skills/`). After global npm install, each host auto-discovers or manually register per host docs.
|
|
125
240
|
|
|
126
241
|
</details>
|
|
127
242
|
|
|
@@ -132,12 +247,22 @@ Plugin manifests ship in the npm package at their standard paths (`.devin-plugin
|
|
|
132
247
|
asc adapter --all
|
|
133
248
|
```
|
|
134
249
|
|
|
135
|
-
Generates adapter files for Cursor, Windsurf, Cline, Copilot, and
|
|
250
|
+
Generates adapter files for Cursor, Devin Desktop, Windsurf, Cline, Copilot, Kiro, Continue, Zed, Aider, Kilo Code, Roo Code, and OpenHands in one go.
|
|
136
251
|
|
|
137
252
|
</details>
|
|
138
253
|
|
|
139
254
|
**Terminal agents** (Claude Code, Codex, Gemini, Copilot CLI) = install once, always-on, zero per-project files.
|
|
140
|
-
**IDE agents** (Cursor,
|
|
255
|
+
**IDE agents** (Cursor, Devin Desktop, Cline, Copilot VS Code, Kiro, Continue, Zed, Aider, Kilo Code, Roo Code, OpenHands, Antigravity) = one file per project via `asc adapter` or copy.
|
|
256
|
+
|
|
257
|
+
### Updating
|
|
258
|
+
|
|
259
|
+
Already installed? Just update the global package:
|
|
260
|
+
|
|
261
|
+
```bash
|
|
262
|
+
npm update -g @ryuenn3123/agentic-senior-core
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
Terminal agent plugins pick up the new version automatically on next session. For IDE adapters, re-run `asc adapter --all` in each project to refresh the adapter files.
|
|
141
266
|
|
|
142
267
|
---
|
|
143
268
|
|
|
@@ -174,12 +299,20 @@ Input validation at trust boundaries, parameterized queries, auth checks, error
|
|
|
174
299
|
| Hermes | Terminal agent | Plugin registration | No |
|
|
175
300
|
| OpenCode | Terminal agent | Auto-detected | No |
|
|
176
301
|
| OpenClaw | Terminal agent | Auto-detected | No |
|
|
177
|
-
| Antigravity |
|
|
302
|
+
| Antigravity IDE | IDE | Copy rules or plugin bundle | No (global) / Yes (rules) |
|
|
303
|
+
| Antigravity CLI | Terminal agent | `agy plugin install` | No |
|
|
178
304
|
| Cursor | IDE | `asc adapter --cursor` | Yes (1 file) |
|
|
179
|
-
|
|
|
305
|
+
| Devin Desktop | IDE | `asc adapter --devin` | Yes (1 file) |
|
|
306
|
+
| Windsurf (legacy) | IDE | `asc adapter --windsurf` | Yes (1 file) |
|
|
180
307
|
| Cline | VS Code ext | `asc adapter --cline` | Yes (1 file) |
|
|
181
308
|
| GitHub Copilot | VS Code ext | `asc adapter --copilot` | Yes (1 file) |
|
|
182
309
|
| Kiro | IDE | `asc adapter --kiro` | Yes (1 file) |
|
|
310
|
+
| Continue | VS Code ext | `asc adapter --continue` | Yes (1 file) |
|
|
311
|
+
| Zed | IDE | `asc adapter --zed` | Yes (1 file) |
|
|
312
|
+
| Aider | Terminal agent | `asc adapter --aider` | Yes (1 file) |
|
|
313
|
+
| Kilo Code | VS Code ext | `asc adapter --kilocode` | Yes (1 file) |
|
|
314
|
+
| Roo Code | VS Code ext | `asc adapter --roo` | Yes (1 file) |
|
|
315
|
+
| OpenHands | Agent | `asc adapter --openhands` | Yes (1 file) |
|
|
183
316
|
|
|
184
317
|
---
|
|
185
318
|
|
|
@@ -199,7 +332,8 @@ Available on plugin hosts (Claude Code, Codex, Gemini CLI):
|
|
|
199
332
|
## CLI
|
|
200
333
|
|
|
201
334
|
```bash
|
|
202
|
-
asc adapter [--cursor|--windsurf|--cline|--copilot|--kiro|--all]
|
|
335
|
+
asc adapter [--cursor|--devin|--windsurf|--cline|--copilot|--kiro|--continue|--zed|--aider|--kilocode|--roo|--openhands|--all]
|
|
336
|
+
asc uninstall [--dry-run]
|
|
203
337
|
asc clean [--dry-run]
|
|
204
338
|
asc status
|
|
205
339
|
asc mcp
|
|
@@ -3,10 +3,11 @@
|
|
|
3
3
|
* Agentic-Senior-Core CLI v5 -- Universal plugin system.
|
|
4
4
|
*
|
|
5
5
|
* Commands:
|
|
6
|
-
* adapter
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
6
|
+
* adapter Generate instruction-tier adapter files for IDEs without plugin support
|
|
7
|
+
* uninstall Remove ASC adapter files from the current project
|
|
8
|
+
* clean Remove v4 per-project artifacts (.agent-context/, bridge files)
|
|
9
|
+
* status Show detected IDEs and install hints
|
|
10
|
+
* mcp Start MCP stdio server
|
|
10
11
|
*/
|
|
11
12
|
import { exit } from 'node:process';
|
|
12
13
|
import { readFileSync } from 'node:fs';
|
|
@@ -25,9 +26,10 @@ function printUsage() {
|
|
|
25
26
|
console.log(' Claude Code: /plugin marketplace add fatidaprilian/Agentic-Senior-Core');
|
|
26
27
|
console.log(' Codex CLI: codex plugins install agentic-senior-core\n');
|
|
27
28
|
console.log('Adapter install (one file per project):');
|
|
28
|
-
console.log(' asc adapter --cursor --
|
|
29
|
+
console.log(' asc adapter --cursor --devin --cline --copilot --kiro --continue --zed --aider --kilocode --roo --openhands --windsurf --all\n');
|
|
29
30
|
console.log('Commands:');
|
|
30
31
|
console.log(' adapter Generate instruction-tier adapter files');
|
|
32
|
+
console.log(' uninstall Remove ASC adapter files from this project');
|
|
31
33
|
console.log(' clean Remove v4 per-project artifacts');
|
|
32
34
|
console.log(' status Show detected IDEs and install hints');
|
|
33
35
|
console.log(' mcp Start MCP stdio server');
|
|
@@ -55,6 +57,12 @@ async function main() {
|
|
|
55
57
|
return;
|
|
56
58
|
}
|
|
57
59
|
|
|
60
|
+
if (commandArgument === 'uninstall') {
|
|
61
|
+
const { runUninstallCommand } = await import('../lib/cli/commands/uninstall.mjs');
|
|
62
|
+
await runUninstallCommand(commandArguments);
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
|
|
58
66
|
if (commandArgument === 'clean') {
|
|
59
67
|
const { runCleanCommand } = await import('../lib/cli/commands/clean.mjs');
|
|
60
68
|
await runCleanCommand(commandArguments);
|