@ryuenn3123/agentic-senior-core 1.9.0 → 1.9.2
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/.agent-context/blueprints/mobile-app.md +21 -21
- package/.agent-context/policies/llm-judge-threshold.json +29 -20
- package/.agent-context/profiles/platform.md +13 -13
- package/.agent-context/profiles/regulated.md +13 -13
- package/.agent-context/profiles/startup.md +13 -13
- package/.agent-context/review-checklists/frontend-skill-parity.md +28 -28
- package/.agent-context/review-checklists/frontend-usability.md +33 -33
- package/.agent-context/review-checklists/release-operations.md +29 -29
- package/.agent-context/rules/security.md +92 -0
- package/.agent-context/skills/README.md +62 -62
- package/.agent-context/skills/backend/README.md +67 -67
- package/.agent-context/skills/backend/architecture.md +360 -360
- package/.agent-context/skills/backend/data-access.md +230 -230
- package/.agent-context/skills/backend/errors.md +137 -137
- package/.agent-context/skills/backend/validation.md +116 -116
- package/.agent-context/skills/backend.md +28 -28
- package/.agent-context/skills/cli/README.md +49 -49
- package/.agent-context/skills/cli/init.md +37 -37
- package/.agent-context/skills/cli/output.md +35 -35
- package/.agent-context/skills/cli/upgrade.md +37 -37
- package/.agent-context/skills/cli.md +28 -28
- package/.agent-context/skills/distribution/README.md +18 -18
- package/.agent-context/skills/distribution/compatibility.md +31 -31
- package/.agent-context/skills/distribution/publish.md +36 -36
- package/.agent-context/skills/distribution/rollback.md +31 -31
- package/.agent-context/skills/distribution.md +28 -28
- package/.agent-context/skills/frontend/README.md +35 -35
- package/.agent-context/skills/frontend/accessibility.md +107 -107
- package/.agent-context/skills/frontend/motion.md +66 -66
- package/.agent-context/skills/frontend/performance.md +62 -62
- package/.agent-context/skills/frontend/ui-architecture.md +128 -128
- package/.agent-context/skills/frontend.md +29 -29
- package/.agent-context/skills/fullstack/README.md +18 -18
- package/.agent-context/skills/fullstack/contracts.md +52 -52
- package/.agent-context/skills/fullstack/end-to-end.md +41 -41
- package/.agent-context/skills/fullstack/feature-slicing.md +64 -64
- package/.agent-context/skills/fullstack.md +26 -26
- package/.agent-context/skills/index.json +107 -107
- package/.agent-context/skills/review-quality/README.md +18 -18
- package/.agent-context/skills/review-quality/benchmark.md +29 -29
- package/.agent-context/skills/review-quality/planning.md +37 -37
- package/.agent-context/skills/review-quality/security.md +33 -33
- package/.agent-context/skills/review-quality.md +27 -27
- package/.agent-context/stacks/flutter.md +16 -16
- package/.agent-context/stacks/react-native.md +16 -16
- package/.agent-context/state/architecture-map.md +25 -25
- package/.agent-context/state/benchmark-analysis.json +431 -431
- package/.agent-context/state/benchmark-thresholds.json +10 -10
- package/.agent-context/state/benchmark-watchlist.json +19 -19
- package/.agent-context/state/dependency-map.md +32 -32
- package/.agent-context/state/onboarding-report.json +39 -0
- package/.agent-context/state/skill-platform.json +38 -38
- package/.agent-override.md +36 -36
- package/.cursorrules +3718 -140
- package/.github/ISSUE_TEMPLATE/v1.7-frontend-work-item.yml +54 -54
- package/.github/workflows/benchmark-detection.yml +38 -38
- package/.github/workflows/benchmark-intelligence.yml +50 -50
- package/.github/workflows/frontend-usability-gate.yml +36 -36
- package/.github/workflows/publish.yml +32 -0
- package/.github/workflows/release-gate.yml +32 -32
- package/.github/workflows/sbom-compliance.yml +32 -32
- package/.windsurfrules +3718 -106
- package/AGENTS.md +181 -181
- package/README.md +318 -318
- package/bin/agentic-senior-core.js +61 -1556
- package/lib/cli/commands/init.mjs +339 -0
- package/lib/cli/commands/launch.mjs +81 -0
- package/lib/cli/commands/upgrade.mjs +165 -0
- package/lib/cli/compiler.mjs +204 -0
- package/lib/cli/constants.mjs +136 -0
- package/lib/cli/detector.mjs +211 -0
- package/lib/cli/profile-packs.mjs +94 -0
- package/lib/cli/skill-selector.mjs +210 -0
- package/lib/cli/utils.mjs +227 -0
- package/mcp.json +92 -92
- package/package.json +3 -1
- package/scripts/benchmark-gate.mjs +121 -121
- package/scripts/benchmark-intelligence.mjs +140 -140
- package/scripts/detection-benchmark.mjs +138 -138
- package/scripts/frontend-usability-audit.mjs +87 -87
- package/scripts/generate-sbom.mjs +61 -61
- package/scripts/init-project.ps1 +104 -104
- package/scripts/llm-judge.mjs +664 -664
- package/scripts/release-gate.mjs +116 -116
- package/scripts/skill-tier-policy.mjs +75 -75
- package/scripts/validate.mjs +636 -636
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
{
|
|
2
|
-
"minimumTop1Accuracy": 0.9,
|
|
3
|
-
"maximumManualCorrectionRate": 0.12,
|
|
4
|
-
"maximumTop1AccuracyDrop": 0.02,
|
|
5
|
-
"maximumManualCorrectionIncrease": 0.03,
|
|
6
|
-
"previousReleaseBaseline": {
|
|
7
|
-
"top1Accuracy": 0.9167,
|
|
8
|
-
"manualCorrectionRate": 0.0833
|
|
9
|
-
}
|
|
10
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"minimumTop1Accuracy": 0.9,
|
|
3
|
+
"maximumManualCorrectionRate": 0.12,
|
|
4
|
+
"maximumTop1AccuracyDrop": 0.02,
|
|
5
|
+
"maximumManualCorrectionIncrease": 0.03,
|
|
6
|
+
"previousReleaseBaseline": {
|
|
7
|
+
"top1Accuracy": 0.9167,
|
|
8
|
+
"manualCorrectionRate": 0.0833
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
{
|
|
2
|
-
"repositories": [
|
|
3
|
-
{
|
|
4
|
-
"repository": "sickn33/antigravity-awesome-skills",
|
|
5
|
-
"owner": "core-architecture",
|
|
6
|
-
"lastReviewedAt": "2026-04-02"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"repository": "github/awesome-copilot",
|
|
10
|
-
"owner": "core-architecture",
|
|
11
|
-
"lastReviewedAt": "2026-04-02"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"repository": "MiniMax-AI/skills",
|
|
15
|
-
"owner": "frontend-governance",
|
|
16
|
-
"lastReviewedAt": "2026-04-02"
|
|
17
|
-
}
|
|
18
|
-
]
|
|
19
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"repositories": [
|
|
3
|
+
{
|
|
4
|
+
"repository": "sickn33/antigravity-awesome-skills",
|
|
5
|
+
"owner": "core-architecture",
|
|
6
|
+
"lastReviewedAt": "2026-04-02"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"repository": "github/awesome-copilot",
|
|
10
|
+
"owner": "core-architecture",
|
|
11
|
+
"lastReviewedAt": "2026-04-02"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"repository": "MiniMax-AI/skills",
|
|
15
|
+
"owner": "frontend-governance",
|
|
16
|
+
"lastReviewedAt": "2026-04-02"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
# Dependency Map (State Awareness)
|
|
2
|
-
|
|
3
|
-
> This map documents allowed dependency direction to prevent circular references during refactors.
|
|
4
|
-
|
|
5
|
-
## Layer Dependency Rules
|
|
6
|
-
|
|
7
|
-
1. Transport layer may depend on Service layer.
|
|
8
|
-
2. Service layer may depend on Domain contracts and Repository interfaces.
|
|
9
|
-
3. Infrastructure layer may implement Repository interfaces.
|
|
10
|
-
4. Domain layer must not depend on Transport or Infrastructure.
|
|
11
|
-
|
|
12
|
-
## Module-Level Constraints
|
|
13
|
-
|
|
14
|
-
| Source Module | Allowed Dependencies | Forbidden Dependencies |
|
|
15
|
-
|---------------|----------------------|------------------------|
|
|
16
|
-
| `authentication` | `shared`, `user` | `payment` internals |
|
|
17
|
-
| `payment` | `shared`, `billing`, `notification` contracts | `authentication` internals |
|
|
18
|
-
| `reporting` | `shared`, read-only repository ports | write-side service internals |
|
|
19
|
-
| `frontend` | public API clients only | direct repository access |
|
|
20
|
-
|
|
21
|
-
## Circular Dependency Guardrail
|
|
22
|
-
|
|
23
|
-
When refactoring:
|
|
24
|
-
|
|
25
|
-
1. Detect import graph changes before applying bulk edits.
|
|
26
|
-
2. Reject any change introducing `A -> B -> A` cycles.
|
|
27
|
-
3. Move shared contracts to `shared` module when two-way dependencies appear.
|
|
28
|
-
|
|
29
|
-
## Project-Specific Notes
|
|
30
|
-
|
|
31
|
-
- Replace sample modules with your real domain modules.
|
|
32
|
-
- Keep this map synchronized with architecture decisions and ADRs.
|
|
1
|
+
# Dependency Map (State Awareness)
|
|
2
|
+
|
|
3
|
+
> This map documents allowed dependency direction to prevent circular references during refactors.
|
|
4
|
+
|
|
5
|
+
## Layer Dependency Rules
|
|
6
|
+
|
|
7
|
+
1. Transport layer may depend on Service layer.
|
|
8
|
+
2. Service layer may depend on Domain contracts and Repository interfaces.
|
|
9
|
+
3. Infrastructure layer may implement Repository interfaces.
|
|
10
|
+
4. Domain layer must not depend on Transport or Infrastructure.
|
|
11
|
+
|
|
12
|
+
## Module-Level Constraints
|
|
13
|
+
|
|
14
|
+
| Source Module | Allowed Dependencies | Forbidden Dependencies |
|
|
15
|
+
|---------------|----------------------|------------------------|
|
|
16
|
+
| `authentication` | `shared`, `user` | `payment` internals |
|
|
17
|
+
| `payment` | `shared`, `billing`, `notification` contracts | `authentication` internals |
|
|
18
|
+
| `reporting` | `shared`, read-only repository ports | write-side service internals |
|
|
19
|
+
| `frontend` | public API clients only | direct repository access |
|
|
20
|
+
|
|
21
|
+
## Circular Dependency Guardrail
|
|
22
|
+
|
|
23
|
+
When refactoring:
|
|
24
|
+
|
|
25
|
+
1. Detect import graph changes before applying bulk edits.
|
|
26
|
+
2. Reject any change introducing `A -> B -> A` cycles.
|
|
27
|
+
3. Move shared contracts to `shared` module when two-way dependencies appear.
|
|
28
|
+
|
|
29
|
+
## Project-Specific Notes
|
|
30
|
+
|
|
31
|
+
- Replace sample modules with your real domain modules.
|
|
32
|
+
- Keep this map synchronized with architecture decisions and ADRs.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cliVersion": "1.9.2",
|
|
3
|
+
"generatedAt": "2026-04-08T01:58:51.014Z",
|
|
4
|
+
"operationMode": "init",
|
|
5
|
+
"selectedProfile": "beginner",
|
|
6
|
+
"selectedProfilePack": null,
|
|
7
|
+
"selectedPreset": "frontend-web",
|
|
8
|
+
"selectedStack": "typescript.md",
|
|
9
|
+
"selectedBlueprint": "api-nextjs.md",
|
|
10
|
+
"ciGuardrailsEnabled": true,
|
|
11
|
+
"setupDurationMs": 16396,
|
|
12
|
+
"selectedSkillDomains": [
|
|
13
|
+
"frontend",
|
|
14
|
+
"fullstack",
|
|
15
|
+
"cli"
|
|
16
|
+
],
|
|
17
|
+
"autoDetection": {
|
|
18
|
+
"recommendedStack": "typescript.md",
|
|
19
|
+
"recommendedBlueprint": "api-nextjs.md",
|
|
20
|
+
"confidenceLabel": "high",
|
|
21
|
+
"confidenceScore": 0.94,
|
|
22
|
+
"confidenceGap": 0.94,
|
|
23
|
+
"detectionReasoning": "Top signal Typescript won with confidence 0.94 from markers: package.json, tsconfig.json.",
|
|
24
|
+
"rankedCandidates": [
|
|
25
|
+
{
|
|
26
|
+
"stackFileName": "typescript.md",
|
|
27
|
+
"confidenceScore": 0.94,
|
|
28
|
+
"evidence": [
|
|
29
|
+
"package.json",
|
|
30
|
+
"tsconfig.json"
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"evidence": [
|
|
35
|
+
"package.json",
|
|
36
|
+
"tsconfig.json"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
{
|
|
2
|
-
"defaultTier": "advance",
|
|
3
|
-
"tiers": [
|
|
4
|
-
{
|
|
5
|
-
"name": "standard",
|
|
6
|
-
"role": "compatibility",
|
|
7
|
-
"description": "Minimal fallback mode for legacy support"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"name": "advance",
|
|
11
|
-
"role": "default",
|
|
12
|
-
"description": "Efficient, opinionated, production-aware baseline"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"name": "expert",
|
|
16
|
-
"role": "complexity",
|
|
17
|
-
"description": "For advanced integration, architecture, and critical refactors"
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"name": "above",
|
|
21
|
-
"role": "governance",
|
|
22
|
-
"description": "For release-critical and enterprise control-plane work"
|
|
23
|
-
}
|
|
24
|
-
],
|
|
25
|
-
"domains": [
|
|
26
|
-
"frontend",
|
|
27
|
-
"backend",
|
|
28
|
-
"fullstack",
|
|
29
|
-
"cli",
|
|
30
|
-
"distribution",
|
|
31
|
-
"review-quality"
|
|
32
|
-
],
|
|
33
|
-
"benchmarkSources": [
|
|
34
|
-
"sickn33/antigravity-awesome-skills",
|
|
35
|
-
"github/awesome-copilot",
|
|
36
|
-
"MiniMax-AI/skills"
|
|
37
|
-
]
|
|
38
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"defaultTier": "advance",
|
|
3
|
+
"tiers": [
|
|
4
|
+
{
|
|
5
|
+
"name": "standard",
|
|
6
|
+
"role": "compatibility",
|
|
7
|
+
"description": "Minimal fallback mode for legacy support"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "advance",
|
|
11
|
+
"role": "default",
|
|
12
|
+
"description": "Efficient, opinionated, production-aware baseline"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "expert",
|
|
16
|
+
"role": "complexity",
|
|
17
|
+
"description": "For advanced integration, architecture, and critical refactors"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "above",
|
|
21
|
+
"role": "governance",
|
|
22
|
+
"description": "For release-critical and enterprise control-plane work"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"domains": [
|
|
26
|
+
"frontend",
|
|
27
|
+
"backend",
|
|
28
|
+
"fullstack",
|
|
29
|
+
"cli",
|
|
30
|
+
"distribution",
|
|
31
|
+
"review-quality"
|
|
32
|
+
],
|
|
33
|
+
"benchmarkSources": [
|
|
34
|
+
"sickn33/antigravity-awesome-skills",
|
|
35
|
+
"github/awesome-copilot",
|
|
36
|
+
"MiniMax-AI/skills"
|
|
37
|
+
]
|
|
38
|
+
}
|
package/.agent-override.md
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
# Rule Overrides
|
|
2
|
-
|
|
3
|
-
> Exception file for enterprise needs.
|
|
4
|
-
> Default policy: all rules remain strict unless explicitly overridden below.
|
|
5
|
-
|
|
6
|
-
## Override Template
|
|
7
|
-
|
|
8
|
-
Use this exact structure for every exception:
|
|
9
|
-
|
|
10
|
-
```markdown
|
|
11
|
-
[Rule: <rule-name>]
|
|
12
|
-
Scope: <module/path>
|
|
13
|
-
Reason: <business or technical constraint>
|
|
14
|
-
Permitted Deviation: <what is allowed>
|
|
15
|
-
Risk Mitigation: <how risk is controlled>
|
|
16
|
-
Expiry: <YYYY-MM-DD>
|
|
17
|
-
Owner: <team/person>
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Example Override
|
|
21
|
-
|
|
22
|
-
```markdown
|
|
23
|
-
[Rule: Naming]
|
|
24
|
-
Scope: legacy-erp-sync module
|
|
25
|
-
Reason: External DB schema uses snake_case columns and strict mapping contracts.
|
|
26
|
-
Permitted Deviation: snake_case variable names are allowed only in mapper files.
|
|
27
|
-
Risk Mitigation: enforce mapper-only scope with codeowners and lint ignore pattern.
|
|
28
|
-
Expiry: 2026-12-31
|
|
29
|
-
Owner: platform-integration-team
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
## Enforcement Notes
|
|
33
|
-
|
|
34
|
-
1. Overrides must be narrow and time-bound.
|
|
35
|
-
2. Expired overrides are invalid and must be removed.
|
|
36
|
-
3. Broad overrides such as "allow any everywhere" are prohibited.
|
|
1
|
+
# Rule Overrides
|
|
2
|
+
|
|
3
|
+
> Exception file for enterprise needs.
|
|
4
|
+
> Default policy: all rules remain strict unless explicitly overridden below.
|
|
5
|
+
|
|
6
|
+
## Override Template
|
|
7
|
+
|
|
8
|
+
Use this exact structure for every exception:
|
|
9
|
+
|
|
10
|
+
```markdown
|
|
11
|
+
[Rule: <rule-name>]
|
|
12
|
+
Scope: <module/path>
|
|
13
|
+
Reason: <business or technical constraint>
|
|
14
|
+
Permitted Deviation: <what is allowed>
|
|
15
|
+
Risk Mitigation: <how risk is controlled>
|
|
16
|
+
Expiry: <YYYY-MM-DD>
|
|
17
|
+
Owner: <team/person>
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Example Override
|
|
21
|
+
|
|
22
|
+
```markdown
|
|
23
|
+
[Rule: Naming]
|
|
24
|
+
Scope: legacy-erp-sync module
|
|
25
|
+
Reason: External DB schema uses snake_case columns and strict mapping contracts.
|
|
26
|
+
Permitted Deviation: snake_case variable names are allowed only in mapper files.
|
|
27
|
+
Risk Mitigation: enforce mapper-only scope with codeowners and lint ignore pattern.
|
|
28
|
+
Expiry: 2026-12-31
|
|
29
|
+
Owner: platform-integration-team
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Enforcement Notes
|
|
33
|
+
|
|
34
|
+
1. Overrides must be narrow and time-bound.
|
|
35
|
+
2. Expired overrides are invalid and must be removed.
|
|
36
|
+
3. Broad overrides such as "allow any everywhere" are prohibited.
|