@ryuenn3123/agentic-senior-core 1.8.0 → 1.8.1

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.
Files changed (52) hide show
  1. package/.agent-context/blueprints/mobile-app.md +21 -0
  2. package/.agent-context/review-checklists/frontend-skill-parity.md +28 -0
  3. package/.agent-context/skills/README.md +63 -0
  4. package/.agent-context/skills/backend/README.md +68 -0
  5. package/.agent-context/skills/backend/architecture.md +361 -0
  6. package/.agent-context/skills/backend/data-access.md +231 -0
  7. package/.agent-context/skills/backend/errors.md +138 -0
  8. package/.agent-context/skills/backend/validation.md +117 -0
  9. package/.agent-context/skills/backend.md +29 -0
  10. package/.agent-context/skills/cli/README.md +50 -0
  11. package/.agent-context/skills/cli/init.md +38 -0
  12. package/.agent-context/skills/cli/output.md +36 -0
  13. package/.agent-context/skills/cli/upgrade.md +38 -0
  14. package/.agent-context/skills/cli.md +29 -0
  15. package/.agent-context/skills/distribution/README.md +19 -0
  16. package/.agent-context/skills/distribution/compatibility.md +32 -0
  17. package/.agent-context/skills/distribution/publish.md +37 -0
  18. package/.agent-context/skills/distribution/rollback.md +32 -0
  19. package/.agent-context/skills/distribution.md +29 -0
  20. package/.agent-context/skills/frontend/README.md +36 -0
  21. package/.agent-context/skills/frontend/accessibility.md +107 -0
  22. package/.agent-context/skills/frontend/motion.md +67 -0
  23. package/.agent-context/skills/frontend/performance.md +63 -0
  24. package/.agent-context/skills/frontend/ui-architecture.md +128 -0
  25. package/.agent-context/skills/frontend.md +30 -0
  26. package/.agent-context/skills/fullstack/README.md +19 -0
  27. package/.agent-context/skills/fullstack/contracts.md +53 -0
  28. package/.agent-context/skills/fullstack/end-to-end.md +42 -0
  29. package/.agent-context/skills/fullstack/feature-slicing.md +65 -0
  30. package/.agent-context/skills/fullstack.md +27 -0
  31. package/.agent-context/skills/index.json +107 -0
  32. package/.agent-context/skills/review-quality/README.md +19 -0
  33. package/.agent-context/skills/review-quality/benchmark.md +30 -0
  34. package/.agent-context/skills/review-quality/planning.md +38 -0
  35. package/.agent-context/skills/review-quality/security.md +34 -0
  36. package/.agent-context/skills/review-quality.md +28 -0
  37. package/.agent-context/stacks/flutter.md +16 -0
  38. package/.agent-context/stacks/react-native.md +16 -0
  39. package/.agent-context/state/benchmark-analysis.json +431 -0
  40. package/.agent-context/state/benchmark-thresholds.json +10 -0
  41. package/.agent-context/state/benchmark-watchlist.json +19 -0
  42. package/.agent-context/state/skill-platform.json +38 -0
  43. package/.cursorrules +1 -1
  44. package/.github/workflows/benchmark-intelligence.yml +50 -0
  45. package/.windsurfrules +1 -1
  46. package/README.md +81 -2
  47. package/bin/agentic-senior-core.js +412 -3
  48. package/package.json +4 -2
  49. package/scripts/benchmark-gate.mjs +121 -0
  50. package/scripts/benchmark-intelligence.mjs +140 -0
  51. package/scripts/skill-tier-policy.mjs +76 -0
  52. package/scripts/validate.mjs +82 -0
package/README.md CHANGED
@@ -45,6 +45,16 @@ The **Use this template** button is in the GitHub repository header (top-right a
45
45
  If you prefer a direct link, open: **[Create from template](https://github.com/fatidaprilian/Agentic-Senior-Core/generate)**.
46
46
  Your new repository will instantly possess all the rules, configurations, and AI context files directly out of the box — zero CLI needed.
47
47
 
48
+ ### Option 0: NPM Install (Local or Global)
49
+
50
+ If you already know you want the CLI from npm, use one of these paths:
51
+
52
+ ```bash
53
+ npm exec --yes @fatidaprilian/agentic-senior-core init
54
+ npm install -g @fatidaprilian/agentic-senior-core
55
+ agentic-senior-core init
56
+ ```
57
+
48
58
  ### Option 1: Interactive via GitHub Source (Pre-publish friendly)
49
59
 
50
60
  If npm package publication is not ready yet, run the CLI directly from GitHub and still keep the full interactive experience.
@@ -55,6 +65,14 @@ npm exec --yes --package=github:fatidaprilian/Agentic-Senior-Core agentic-senior
55
65
 
56
66
  This gives the same interactive prompts to choose your profile (`beginner`, `balanced`, `strict`), stack, blueprint, and CI guardrails.
57
67
 
68
+ If you want a plug-and-play starter instead of answering every question, use a preset:
69
+
70
+ ```bash
71
+ npx @fatidaprilian/agentic-senior-core init --preset frontend-web
72
+ npx @fatidaprilian/agentic-senior-core init --preset backend-api
73
+ npx @fatidaprilian/agentic-senior-core init --preset mobile-react-native
74
+ ```
75
+
58
76
  ### Option 2: GitHub Bootstrap Scripts (No npx required)
59
77
 
60
78
  Run directly from this repository bootstrap script and inject rules into your project root.
@@ -85,7 +103,7 @@ If you have an existing project and want to infuse it with Staff-level context:
85
103
  npx @fatidaprilian/agentic-senior-core init
86
104
  ```
87
105
 
88
- Use team defaults (V1.6 track) with profile packs:
106
+ Use team defaults (V1.8 track) with profile packs:
89
107
 
90
108
  ```bash
91
109
  npx @fatidaprilian/agentic-senior-core init --profile-pack startup
@@ -98,10 +116,63 @@ If you are totally new to concepts like blueprints and guardrails, no problem
98
116
  npx @fatidaprilian/agentic-senior-core init --newbie
99
117
  ```
100
118
 
119
+ ### Skill Selector
120
+
121
+ Use the unified skill selector to pick the right pack for a domain:
122
+
123
+ ```bash
124
+ agentic-senior-core skill frontend --tier advance
125
+ agentic-senior-core skill backend --tier expert
126
+ agentic-senior-core skill fullstack --json
127
+ ```
128
+
129
+ When you run `init`, the CLI now auto-activates the matching skill packs for the chosen stack and blueprint, so the compiled governance context includes the relevant frontend, backend, fullstack, and CLI guidance by default.
130
+
131
+ ### Install and Setup Choices
132
+
133
+ The CLI now supports a smaller decision surface for first-time setup:
134
+
135
+ | Path | Best for |
136
+ |------|----------|
137
+ | `agentic-senior-core launch` | Numbered interactive chooser for install and preset paths |
138
+ | GitHub Template | Zero-install project bootstrap |
139
+ | npm exec / npx | One-off setup on an existing repo |
140
+ | npm install -g | Repeated local use from the shell |
141
+ | `--preset` | Fast bootstrap with a curated stack and blueprint |
142
+
143
+ ### Supported Stack Map
144
+
145
+ Use the stack that matches the project you are actually starting:
146
+
147
+ | Stack | Recommended Blueprint | Best Fit |
148
+ |-------|-----------------------|----------|
149
+ | TypeScript | api-nextjs | Web app, fullstack product, CLI tooling |
150
+ | Python | fastapi-service | API service, automation, data-heavy backend |
151
+ | Go | go-service | Small, fast services and platform tooling |
152
+ | Java | spring-boot-api | Enterprise APIs and service-oriented systems |
153
+ | PHP | laravel-api | Conventional product backends |
154
+ | C# | aspnet-api | Microsoft stack services and enterprise apps |
155
+ | Rust | go-service | Performance-sensitive backend work |
156
+ | Ruby | laravel-api | Mature product services and backend workflows |
157
+ | React Native | mobile-app | Cross-platform mobile applications |
158
+ | Flutter | mobile-app | Cross-platform mobile applications |
159
+
160
+ ### Benchmark Comparison (Current State)
161
+
162
+ | Capability | antigravity-awesome-skills | awesome-copilot | MiniMax-AI/skills | Agentic-Senior-Core |
163
+ |------------|----------------------------|-----------------|-------------------|---------------------|
164
+ | Skill organization | Large curated library | Resource catalog + governance docs | Domain-focused packs | Unified folder-based domain packs with tier routing |
165
+ | Architecture guidance | Strong practical patterns | Strong SoC and layered architecture | Strong applied templates | Consolidated architecture + domain enforcement |
166
+ | CLI governance | Limited | Moderate | Moderate | Init/upgrade/output governance with dry-run and structured reports |
167
+ | Distribution operations | Basic | Moderate | Strong release checklists | Publish, rollback, compatibility gates plus benchmark/sbom flows |
168
+ | Review quality | Pattern-oriented | Checklist-oriented | Gate-oriented | Planning/security/benchmark review model with CI integration |
169
+
101
170
  ### Option 4: Clone and Play
102
171
  Want to poke around under the hood? Just clone the repo and `npx @fatidaprilian/agentic-senior-core init` locally. No runtime dependencies needed — everything uses native Node.js!
103
172
 
104
- ### Upgrade Existing Governance Packs (V1.6)
173
+ ### Upgrade Existing Governance Packs (V1.8)
174
+
175
+ Yes, the upgrade flow still works. Use `--dry-run` first to preview changes, then apply with `--yes` when you are ready.
105
176
 
106
177
  Preview migration changes safely:
107
178
 
@@ -122,6 +193,9 @@ npx @fatidaprilian/agentic-senior-core upgrade --yes
122
193
  Our documentation has shifted into dedicated tracks to keep this README light:
123
194
  - **[FAQ / Concepts](docs/faq.md)**: Unfamiliar with Stacks, Blueprints, or Guardrails? Stalled on basic logic? Start here.
124
195
  - **[Deep Dive / Internals](docs/deep-dive.md)**: Explore the dynamic compiler, severity profiles, MCP integration, and granular LLM overrides here.
196
+ - **[V2 Upgrade Playbook](docs/v2-upgrade-playbook.md)**: Benchmark-driven upgrade execution from antigravity-awesome-skills, awesome-copilot, and MiniMax skills.
197
+ - **[Skill Platform](.agent-context/skills/README.md)**: Unified skill packs for frontend, backend, fullstack, CLI, distribution, and review quality with `advance` as the default tier.
198
+ The skill platform is now folder-based, so each domain has its own README and topic docs like a curated skills library.
125
199
 
126
200
  ---
127
201
 
@@ -215,6 +289,11 @@ npm run benchmark:detection
215
289
  - CycloneDX SBOM generation and compliance artifact workflow shipped.
216
290
  - Operations playbook and release-operations checklist shipped.
217
291
 
292
+ ### Current Forward Plan
293
+ - V2.0: Skill marketplace trust tiers, transactional installs, rollback safety, and launch-menu onboarding.
294
+ - V2.5: Cross-model benchmark harness and anti-regression quality gates.
295
+ - V3.0: Enterprise governance cloud, policy drift detection, and org-level override registry.
296
+
218
297
  Detailed timeline and success metrics: [docs/roadmap.md](docs/roadmap.md)
219
298
 
220
299
  ---