@ryuenn3123/agentic-senior-core 5.8.20 → 5.8.22
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 +8 -0
- package/.agents/plugins/agentic-senior-core/skills/asc-new-project/SKILL.md +5 -6
- package/.agents/rules/agentic-senior-core.md +8 -0
- package/AGENTS.md +8 -0
- package/CONVENTIONS.md +8 -0
- package/README.md +8 -0
- package/gemini-extension.json +6 -6
- package/lib/cli/commands/adapter.mjs +21 -13
- package/lib/cli/commands/global.mjs +8 -8
- package/package.json +1 -21
- package/plugin.yaml +1 -1
- package/.claude-plugin/marketplace.json +0 -17
- package/.claude-plugin/plugin.json +0 -17
- package/.clinerules/agentic-senior-core.md +0 -101
- package/.codex-plugin/plugin.json +0 -24
- package/.continue/rules/agentic-senior-core.md +0 -101
- package/.cursor/rules/agentic-senior-core.mdc +0 -106
- package/.devin/rules/agentic-senior-core.md +0 -101
- package/.devin-plugin/plugin.json +0 -13
- package/.github/copilot-instructions.md +0 -101
- package/.github/plugin/marketplace.json +0 -20
- package/.github/plugin/plugin.json +0 -16
- package/.kilocode/rules/agentic-senior-core.md +0 -101
- package/.kiro/steering/agentic-senior-core.md +0 -101
- package/.openclaw/skills/asc/SKILL.md +0 -30
- package/.openclaw/skills/asc-adapter/SKILL.md +0 -37
- package/.openclaw/skills/asc-add-feature/SKILL.md +0 -46
- package/.openclaw/skills/asc-audit/SKILL.md +0 -30
- package/.openclaw/skills/asc-debt/SKILL.md +0 -66
- package/.openclaw/skills/asc-new-project/SKILL.md +0 -49
- package/.openclaw/skills/asc-refactor/SKILL.md +0 -56
- package/.openclaw/skills/asc-reference/SKILL.md +0 -53
- package/.openclaw/skills/asc-review/SKILL.md +0 -57
- package/.opencode/plugins/agentic-senior-core.mjs +0 -31
- package/.openhands/microagents/agentic-senior-core.md +0 -101
- package/.roo/rules/agentic-senior-core.md +0 -101
- package/.windsurf/rules/agentic-senior-core.md +0 -101
- package/.zed/rules/agentic-senior-core.md +0 -101
- package/hooks/copilot-hooks.json +0 -30
- package/hooks/hooks.json +0 -86
- package/hooks/lib/known-duplicates.json +0 -32
- package/hooks/package.json +0 -3
- package/hooks/path-util.cjs +0 -23
- package/hooks/post-edit-enforce.js +0 -234
- package/hooks/pre-tool-dependency-gate.js +0 -155
- package/hooks/session-start.js +0 -36
- package/hooks/subagent-start.js +0 -38
- package/skills/asc/SKILL.md +0 -36
- package/skills/asc-adapter/SKILL.md +0 -43
- package/skills/asc-add-feature/SKILL.md +0 -53
- package/skills/asc-audit/SKILL.md +0 -36
- package/skills/asc-debt/SKILL.md +0 -72
- package/skills/asc-new-project/SKILL.md +0 -62
- package/skills/asc-refactor/SKILL.md +0 -62
- package/skills/asc-reference/SKILL.md +0 -59
- package/skills/asc-review/SKILL.md +0 -63
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-add-feature.md +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-add-feature.toml +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-audit.md +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-audit.toml +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-help.md +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-help.toml +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-new-project.md +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-new-project.toml +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-refactor.md +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-refactor.toml +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-review.md +0 -0
- /package/{commands → .agents/plugins/agentic-senior-core/commands}/asc-review.toml +0 -0
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: asc-review
|
|
3
|
-
description: >
|
|
4
|
-
Production-risk code review. Prioritize findings by severity.
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Review Skill
|
|
8
|
-
|
|
9
|
-
Production-risk code review. Prioritize findings by severity.
|
|
10
|
-
|
|
11
|
-
Grounded in: OWASP Risk Rating Methodology, Google Engineering Practices (code review guide), Clean Architecture (transport vs business layer separation).
|
|
12
|
-
|
|
13
|
-
## Before Reviewing
|
|
14
|
-
|
|
15
|
-
1. Read the changed files and understand the scope.
|
|
16
|
-
2. For UI changes, check accessibility and design consistency.
|
|
17
|
-
3. For API changes, check contract stability and documentation sync.
|
|
18
|
-
4. Walk the decision ladder for each new file or dependency: does this need to exist, could the stdlib or an existing dependency handle it?
|
|
19
|
-
|
|
20
|
-
## Finding Priority Order
|
|
21
|
-
|
|
22
|
-
1. Correctness, data loss, security, privacy, auth, and permission risks.
|
|
23
|
-
2. Public contract drift: APIs, events, CLI behavior, data model, UI contract, docs.
|
|
24
|
-
3. Missing tests for changed behavior.
|
|
25
|
-
4. Architecture boundary drift and maintainability risk.
|
|
26
|
-
5. Performance and accessibility issues with concrete impact.
|
|
27
|
-
|
|
28
|
-
## For Every Finding
|
|
29
|
-
|
|
30
|
-
- Include file and line reference.
|
|
31
|
-
- Explain the real risk.
|
|
32
|
-
- Propose the smallest safe fix.
|
|
33
|
-
|
|
34
|
-
## Checklist
|
|
35
|
-
|
|
36
|
-
### Correctness
|
|
37
|
-
- Changed behavior matches the user request.
|
|
38
|
-
- Existing behavior preserved unless user approved a change.
|
|
39
|
-
- Edge cases, empty states, error paths handled.
|
|
40
|
-
|
|
41
|
-
### Security
|
|
42
|
-
- External input validated at trust boundaries.
|
|
43
|
-
- Secrets, tokens, credentials not committed or logged.
|
|
44
|
-
- Authorization enforced at a trusted boundary.
|
|
45
|
-
- Error responses keep internal details out of client responses.
|
|
46
|
-
|
|
47
|
-
### Architecture
|
|
48
|
-
- Layer boundaries clear. Controllers handle protocol translation only; business logic stays in services.
|
|
49
|
-
- Abstractions backed by real duplication, not prediction. Straightforward code over clever solutions.
|
|
50
|
-
- Complexity budget applied: fewer moving parts without losing safety.
|
|
51
|
-
|
|
52
|
-
### Testing
|
|
53
|
-
- Changed behavior has appropriate tests.
|
|
54
|
-
- Tests assert behavior and contracts, not implementation trivia.
|
|
55
|
-
- Critical flows include failure-path coverage.
|
|
56
|
-
|
|
57
|
-
### Documentation
|
|
58
|
-
- API, event, CLI, and data contract changes update docs in the same commit.
|
|
59
|
-
- Root README exists and stays current.
|
|
60
|
-
|
|
61
|
-
## Output
|
|
62
|
-
|
|
63
|
-
Report findings ordered by severity with file/line references and concrete fixes. If no findings, say so explicitly and name any residual risk.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|