@ryuenn3123/agentic-senior-core 2.0.22 → 2.0.23
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/.cursorrules +1 -1
- package/.windsurfrules +1 -1
- package/README.md +1 -0
- package/lib/cli/compiler.mjs +5 -0
- package/package.json +1 -1
package/.cursorrules
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AGENTIC-SENIOR-CORE DYNAMIC GOVERNANCE RULESET
|
|
2
2
|
|
|
3
|
-
Generated by Agentic-Senior-Core CLI v2.0.
|
|
3
|
+
Generated by Agentic-Senior-Core CLI v2.0.23
|
|
4
4
|
Timestamp: 2026-04-15T00:14:51.184Z
|
|
5
5
|
Selected profile: beginner
|
|
6
6
|
Selected policy file: .agent-context/policies/llm-judge-threshold.json
|
package/.windsurfrules
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AGENTIC-SENIOR-CORE DYNAMIC GOVERNANCE RULESET
|
|
2
2
|
|
|
3
|
-
Generated by Agentic-Senior-Core CLI v2.0.
|
|
3
|
+
Generated by Agentic-Senior-Core CLI v2.0.23
|
|
4
4
|
Timestamp: 2026-04-15T00:14:51.184Z
|
|
5
5
|
Selected profile: beginner
|
|
6
6
|
Selected policy file: .agent-context/policies/llm-judge-threshold.json
|
package/README.md
CHANGED
|
@@ -360,6 +360,7 @@ Our documentation has shifted into dedicated tracks to keep this README light:
|
|
|
360
360
|
- **[FAQ / Concepts](docs/faq.md)**: Unfamiliar with Stacks, Blueprints, or Guardrails? Stalled on basic logic? Start here.
|
|
361
361
|
- **[Deep Dive / Internals](docs/deep-dive.md)**: Explore the dynamic compiler, severity profiles, MCP integration, and granular LLM overrides here.
|
|
362
362
|
- **[V2 Upgrade Playbook](docs/v2-upgrade-playbook.md)**: Benchmark-driven execution plus profile and preset guidance for common usage patterns.
|
|
363
|
+
- **[Integration Playbook](docs/integration-playbook.md)**: Practical integration paths for GitHub Actions, Jenkins, VS Code, and JetBrains.
|
|
363
364
|
- **[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.
|
|
364
365
|
The skill platform is now folder-based, so each domain has its own README and topic docs like a curated skills library.
|
|
365
366
|
|
package/lib/cli/compiler.mjs
CHANGED
|
@@ -262,6 +262,11 @@ export async function buildCompiledRulesContent({
|
|
|
262
262
|
'',
|
|
263
263
|
'These docs were generated during project initialization and reflect the architecture,',
|
|
264
264
|
'database design, API contracts, and application flows chosen for this project.',
|
|
265
|
+
'Latest user prompt defines current feature scope and product direction.',
|
|
266
|
+
'Treat requested features as dynamic, but keep stack/database/auth constraints consistent',
|
|
267
|
+
'with project docs unless the user explicitly asks for a migration.',
|
|
268
|
+
'When scope changes, implement the new request and update docs/* in the same change',
|
|
269
|
+
'so generated context stays aligned with the codebase.',
|
|
265
270
|
'Update them as the project evolves. They are living references, not frozen specs.',
|
|
266
271
|
].join('\n')
|
|
267
272
|
);
|