@ryuenn3123/agentic-senior-core 5.8.25 → 5.8.26
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 +1 -1
- package/.agents/plugins/agentic-senior-core/rules/agentic-senior-core.md +1 -0
- package/.agents/plugins/agentic-senior-core/skills/asc-adapter/SKILL.md +1 -1
- package/.agents/plugins/agentic-senior-core/skills/asc-add-feature/SKILL.md +1 -1
- package/.agents/plugins/agentic-senior-core/skills/asc-audit/SKILL.md +1 -1
- package/.agents/plugins/agentic-senior-core/skills/asc-debt/SKILL.md +1 -1
- package/.agents/plugins/agentic-senior-core/skills/asc-new-project/SKILL.md +1 -1
- package/.agents/plugins/agentic-senior-core/skills/asc-refactor/SKILL.md +1 -1
- package/.agents/plugins/agentic-senior-core/skills/asc-reference/SKILL.md +9 -1
- package/.agents/plugins/agentic-senior-core/skills/asc-review/SKILL.md +1 -1
- package/.agents/rules/agentic-senior-core.md +1 -0
- package/AGENTS.md +1 -0
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
- package/plugin.yaml +1 -1
|
@@ -30,6 +30,7 @@ When you pick the minimal option at step 5 or 6, and it isn't obviously trivial:
|
|
|
30
30
|
## Code Quality
|
|
31
31
|
|
|
32
32
|
- Descriptive variable and function names. No cryptic abbreviations.
|
|
33
|
+
- All identifiers (variables, functions, classes, file names, database columns) must be in English.
|
|
33
34
|
- Early returns over deep nesting. Keep the main flow traceable.
|
|
34
35
|
- Three similar lines is better than a premature abstraction.
|
|
35
36
|
- Scope changes to what the task requires. Features, refactors, and abstractions beyond scope need explicit user confirmation.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: asc-adapter
|
|
3
3
|
description: >
|
|
4
|
-
Trigger this skill when the user says: "install ASC", "set up rules", "configure for Cursor", "add to Windsurf", "set up Copilot", "initialize plugin", "generate adapter", "install for my IDE", "set up Antigravity", "add to Kiro", "configure Roo". Also trigger for any request to install, configure, or initialize Agentic Senior Core rules or adapter files for an AI coding tool.
|
|
4
|
+
Trigger this skill when the user says: "install ASC", "set up rules", "configure for Cursor", "add to Windsurf", "set up Copilot", "initialize plugin", "generate adapter", "install for my IDE", "set up Antigravity", "add to Kiro", "configure Roo", "set up for my editor", "install rules for this project", "add ASC to this repo". Also trigger for any request to install, configure, or initialize Agentic Senior Core rules or adapter files for an AI coding tool.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# ASC Adapter
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: asc-add-feature
|
|
3
3
|
description: >
|
|
4
|
-
Trigger this skill when the user says: "add a feature", "build this endpoint", "implement this", "add this component", "extend this", "integrate this", "wire up", "add support for", "create a new route", "add a new page". Also trigger for any non-trivial addition to an existing codebase — new endpoints, UI components, services, or integrations.
|
|
4
|
+
Trigger this skill when the user says: "add a feature", "build this endpoint", "implement this", "add this component", "extend this", "integrate this", "wire up", "add support for", "create a new route", "add a new page", "hook this up", "connect this to", "make it do X", "add a button for". Also trigger for any non-trivial addition to an existing codebase — new endpoints, UI components, services, or integrations. Also trigger when the user describes new functionality to add to a working project.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Add Feature Workflow
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: asc-audit
|
|
3
3
|
description: >
|
|
4
|
-
Trigger this skill when the user says: "audit this", "security check", "find vulnerabilities", "is this secure", "check for XSS", "check for SQL injection", "threat model", "penetration test", "OWASP check", "architecture review". Also trigger for any deep security audit, vulnerability scanning, or request to find structural anti-patterns in existing code.
|
|
4
|
+
Trigger this skill when the user says: "audit this", "security check", "find vulnerabilities", "is this secure", "check for XSS", "check for SQL injection", "threat model", "penetration test", "OWASP check", "architecture review", "is this safe", "check auth", "check permissions", "find security holes". Also trigger for any deep security audit, vulnerability scanning, or request to find structural anti-patterns in existing code. Also trigger when reviewing authentication, authorization, input validation, or encryption-related code.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Audit Skill
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: asc-debt
|
|
3
3
|
description: >
|
|
4
|
-
Trigger this skill when the user says: "log this debt", "skip this for now", "defer this fix", "note this smell", "track this violation", "add to debt ledger", "we'll fix this later", "accept the shortcut". Also trigger when an ASC ladder nudge fires and the user accepts the shortcut rather than fixing it — log the deferred violation for later resolution.
|
|
4
|
+
Trigger this skill when the user says: "log this debt", "skip this for now", "defer this fix", "note this smell", "track this violation", "add to debt ledger", "we'll fix this later", "accept the shortcut", "I know this is bad but", "just do it for now", "TODO later". Also trigger when an ASC ladder nudge fires and the user accepts the shortcut rather than fixing it — log the deferred violation for later resolution.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Debt Ledger
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: asc-new-project
|
|
3
3
|
description: >
|
|
4
|
-
Trigger this skill when the user says: "new project", "start from scratch", "scaffold this", "bootstrap", "create a new app", "init a project", "set up a new repo", "greenfield", "plan the architecture", "design the system". Also trigger for any request to create a new codebase, plan a new system architecture, or scaffold a new repository.
|
|
4
|
+
Trigger this skill when the user says: "new project", "start from scratch", "scaffold this", "bootstrap", "create a new app", "init a project", "set up a new repo", "greenfield", "plan the architecture", "design the system", "build me an app", "start a new codebase", "I want to build", "let's create". Also trigger for any request to create a new codebase, plan a new system architecture, or scaffold a new repository from zero.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# New Project Workflow
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: asc-refactor
|
|
3
3
|
description: >
|
|
4
|
-
Trigger this skill when the user says: "refactor this", "clean up this code", "improve this structure", "rewrite this", "extract this into", "reduce duplication", "apply DRY", "apply SOLID", "migrate this", "simplify this module", "split this file", "decompose this". Also trigger for any request to restructure, modernize, or improve code organization without changing behavior.
|
|
4
|
+
Trigger this skill when the user says: "refactor this", "clean up this code", "improve this structure", "rewrite this", "extract this into", "reduce duplication", "apply DRY", "apply SOLID", "migrate this", "simplify this module", "split this file", "decompose this", "this is messy", "make this cleaner", "too much coupling", "move this logic". Also trigger for any request to restructure, modernize, or improve code organization without changing behavior.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Refactor Skill
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: asc-reference
|
|
3
3
|
description: >
|
|
4
|
-
Trigger this skill when the user is working on: unit tests, integration tests, REST APIs, GraphQL APIs, SQL queries, database migrations, React components, frontend layouts, Docker configs, CI/CD pipelines, Kubernetes manifests, or service resilience (retries, circuit breakers, rate limiting). Also trigger when the user says: "how should I test this", "design this API", "optimize this query", "set up Docker", "add retry logic".
|
|
4
|
+
Trigger this skill when the user is working on: unit tests, integration tests, REST APIs, GraphQL APIs, SQL queries, database migrations, React components, frontend layouts, Docker configs, CI/CD pipelines, Kubernetes manifests, or service resilience (retries, circuit breakers, rate limiting). Also trigger when the user says: "how should I test this", "design this API", "optimize this query", "set up Docker", "add retry logic", "write a test", "add pagination", "handle errors", "add loading state", "set up CI". Also trigger when editing files matching: `*.test.*`, `*.spec.*`, `Dockerfile`, `docker-compose.*`, `.github/workflows/*`, `*.sql`, or migration files.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# ASC Domain Reference
|
|
@@ -57,3 +57,11 @@ Grounded in: WCAG 2.2 AA (accessibility), Fowler's Money Pattern (monetary types
|
|
|
57
57
|
- Only retry idempotent operations.
|
|
58
58
|
- Circuit breakers for unhealthy dependencies.
|
|
59
59
|
- Graceful degradation on non-critical dependency failure.
|
|
60
|
+
|
|
61
|
+
## Naming
|
|
62
|
+
|
|
63
|
+
- Variables and properties are nouns: `userList`, `pageCount`, not `getUser`.
|
|
64
|
+
- Functions and methods are verbs: `calculateTotal`, `fetchUsers`, not `total`.
|
|
65
|
+
- Booleans prefixed with `is`/`has`/`can`: `isValid`, `hasPermission`.
|
|
66
|
+
- Constants in UPPER_SNAKE_CASE: `MAX_RETRIES`, `API_BASE_URL`.
|
|
67
|
+
- Follow the casing convention of the language and existing codebase. When starting fresh, use the community default for that language.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: asc-review
|
|
3
3
|
description: >
|
|
4
|
-
Trigger this skill when the user says: "review this code", "check this PR", "what's wrong with this", "look at my changes", "critique this", "is this production-ready", "review my pull request", "find bugs", "check for issues". Also trigger for any request to evaluate code quality, analyze recent commits, or assess production risks in existing code.
|
|
4
|
+
Trigger this skill when the user says: "review this code", "check this PR", "what's wrong with this", "look at my changes", "critique this", "is this production-ready", "review my pull request", "find bugs", "check for issues", "any problems here", "does this look right", "sanity check this". Also trigger for any request to evaluate code quality, analyze recent commits, or assess production risks in existing code. Also trigger when editing or viewing diff output, PR descriptions, or code review comments.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Review Skill
|
|
@@ -30,6 +30,7 @@ When you pick the minimal option at step 5 or 6, and it isn't obviously trivial:
|
|
|
30
30
|
## Code Quality
|
|
31
31
|
|
|
32
32
|
- Descriptive variable and function names. No cryptic abbreviations.
|
|
33
|
+
- All identifiers (variables, functions, classes, file names, database columns) must be in English.
|
|
33
34
|
- Early returns over deep nesting. Keep the main flow traceable.
|
|
34
35
|
- Three similar lines is better than a premature abstraction.
|
|
35
36
|
- Scope changes to what the task requires. Features, refactors, and abstractions beyond scope need explicit user confirmation.
|
package/AGENTS.md
CHANGED
|
@@ -25,6 +25,7 @@ When you pick the minimal option at step 5 or 6, and it isn't obviously trivial:
|
|
|
25
25
|
## Code Quality
|
|
26
26
|
|
|
27
27
|
- Descriptive variable and function names. No cryptic abbreviations.
|
|
28
|
+
- All identifiers (variables, functions, classes, file names, database columns) must be in English.
|
|
28
29
|
- Early returns over deep nesting. Keep the main flow traceable.
|
|
29
30
|
- Three similar lines is better than a premature abstraction.
|
|
30
31
|
- Scope changes to what the task requires. Features, refactors, and abstractions beyond scope need explicit user confirmation.
|
package/gemini-extension.json
CHANGED
package/package.json
CHANGED
package/plugin.yaml
CHANGED