@ryuenn3123/agentic-senior-core 2.0.0 → 2.0.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.
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"cliVersion": "2.0.
|
|
3
|
-
"generatedAt": "2026-04-
|
|
2
|
+
"cliVersion": "2.0.1",
|
|
3
|
+
"generatedAt": "2026-04-08T14:58:53.636Z",
|
|
4
4
|
"operationMode": "upgrade",
|
|
5
5
|
"selectedProfile": "beginner",
|
|
6
6
|
"selectedProfilePack": null,
|
|
7
7
|
"selectedStack": "typescript.md",
|
|
8
8
|
"selectedBlueprint": "api-nextjs.md",
|
|
9
9
|
"ciGuardrailsEnabled": true,
|
|
10
|
-
"setupDurationMs":
|
|
10
|
+
"setupDurationMs": 106,
|
|
11
11
|
"selectedSkillDomains": [],
|
|
12
12
|
"autoDetection": {
|
|
13
13
|
"recommendedStack": "typescript.md",
|
package/.cursorrules
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# AGENTIC-SENIOR-CORE DYNAMIC GOVERNANCE RULESET
|
|
2
2
|
|
|
3
|
-
Generated by Agentic-Senior-Core CLI v2.0.
|
|
4
|
-
Timestamp: 2026-04-
|
|
3
|
+
Generated by Agentic-Senior-Core CLI v2.0.1
|
|
4
|
+
Timestamp: 2026-04-08T14:58:53.570Z
|
|
5
5
|
Selected profile: beginner
|
|
6
6
|
Selected policy file: .agent-context/policies/llm-judge-threshold.json
|
|
7
7
|
|
package/.windsurfrules
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# AGENTIC-SENIOR-CORE DYNAMIC GOVERNANCE RULESET
|
|
2
2
|
|
|
3
|
-
Generated by Agentic-Senior-Core CLI v2.0.
|
|
4
|
-
Timestamp: 2026-04-
|
|
3
|
+
Generated by Agentic-Senior-Core CLI v2.0.1
|
|
4
|
+
Timestamp: 2026-04-08T14:58:53.570Z
|
|
5
5
|
Selected profile: beginner
|
|
6
6
|
Selected policy file: .agent-context/policies/llm-judge-threshold.json
|
|
7
7
|
|
package/README.md
CHANGED
|
@@ -103,7 +103,7 @@ If you have an existing project and want to infuse it with Staff-level context:
|
|
|
103
103
|
npx @ryuenn3123/agentic-senior-core init
|
|
104
104
|
```
|
|
105
105
|
|
|
106
|
-
Use team defaults (
|
|
106
|
+
Use team defaults (V2.0 track) with profile packs:
|
|
107
107
|
|
|
108
108
|
```bash
|
|
109
109
|
npx @ryuenn3123/agentic-senior-core init --profile-pack startup
|
|
@@ -170,7 +170,7 @@ Use the stack that matches the project you are actually starting:
|
|
|
170
170
|
### Option 4: Clone and Play
|
|
171
171
|
Want to poke around under the hood? Just clone the repo and `npx @ryuenn3123/agentic-senior-core init` locally. No runtime dependencies needed — everything uses native Node.js!
|
|
172
172
|
|
|
173
|
-
### Upgrade Existing Governance Packs (V1.
|
|
173
|
+
### Upgrade Existing Governance Packs (V1.x to V2.x)
|
|
174
174
|
|
|
175
175
|
Yes, the upgrade flow still works. Use `--dry-run` first to preview changes, then apply with `--yes` when you are ready.
|
|
176
176
|
|
|
@@ -201,7 +201,8 @@ Our documentation has shifted into dedicated tracks to keep this README light:
|
|
|
201
201
|
|
|
202
202
|
## Core Capabilities
|
|
203
203
|
|
|
204
|
-
- **Delivery Engine (CLI):** Interactive setup via GitHub source, bootstrap scripts, or `npx` after publish.
|
|
204
|
+
- **Delivery Engine (CLI):** Interactive setup via GitHub source, bootstrap scripts, or `npx` after publish. Supported by a robust transactional installer with rollback protection.
|
|
205
|
+
- **Verified Skill Marketplace:** Distribute and validate plugins securely with automated 4-dimension Trust Scoring and Evidence Bundles constraint validation.
|
|
205
206
|
- **Dynamic Context Compiler:** Merges universal rules + selected stack + selected blueprint + optional CI guardrails into one dense, indexed rule file.
|
|
206
207
|
- **Codebase Intelligence:** `.agent-context/state/` gives architecture/dependency boundaries so the agent understands high-risk areas.
|
|
207
208
|
- **Override System:** `.agent-override.md` allows controlled enterprise exceptions without forking core rules.
|
|
@@ -142,6 +142,14 @@ export function parseInitArguments(commandArguments) {
|
|
|
142
142
|
|
|
143
143
|
export async function runInitCommand(targetDirectoryArgument, initOptions = {}) {
|
|
144
144
|
const resolvedTargetDirectoryPath = path.resolve(targetDirectoryArgument || '.');
|
|
145
|
+
|
|
146
|
+
if (resolvedTargetDirectoryPath.toLowerCase() === 'c:\\windows' || resolvedTargetDirectoryPath.toLowerCase() === 'c:\\windows\\system32') {
|
|
147
|
+
console.error('\n[FATAL] Target directory resolved to a Windows system folder (C:\\Windows).');
|
|
148
|
+
console.error('If you are running Windows npm from inside WSL, this is caused by cmd.exe lacking UNC path support.');
|
|
149
|
+
console.error('Please install and use a native Linux Node.js/npm directly inside WSL to setup your project.');
|
|
150
|
+
process.exit(1);
|
|
151
|
+
}
|
|
152
|
+
|
|
145
153
|
const setupStartedAt = Date.now();
|
|
146
154
|
await ensureDirectory(resolvedTargetDirectoryPath);
|
|
147
155
|
|
|
@@ -15,6 +15,13 @@ export async function runRollbackCommand(commandArguments) {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
const resolvedTargetDirectoryPath = path.resolve(targetDirectoryArgument);
|
|
18
|
+
|
|
19
|
+
if (resolvedTargetDirectoryPath.toLowerCase() === 'c:\\windows' || resolvedTargetDirectoryPath.toLowerCase() === 'c:\\windows\\system32') {
|
|
20
|
+
console.error('\n[FATAL] Target directory resolved to a Windows system folder (C:\\Windows).');
|
|
21
|
+
console.error('If you are running Windows npm from inside WSL, this is caused by cmd.exe lacking UNC path support.');
|
|
22
|
+
console.error('Please install and use a native Linux Node.js/npm directly inside WSL to setup your project.');
|
|
23
|
+
process.exit(1);
|
|
24
|
+
}
|
|
18
25
|
|
|
19
26
|
try {
|
|
20
27
|
await ensureDirectory(resolvedTargetDirectoryPath);
|
|
@@ -69,6 +69,14 @@ export function parseUpgradeArguments(commandArguments) {
|
|
|
69
69
|
|
|
70
70
|
export async function runUpgradeCommand(targetDirectoryArgument, upgradeOptions = {}) {
|
|
71
71
|
const resolvedTargetDirectoryPath = path.resolve(targetDirectoryArgument || '.');
|
|
72
|
+
|
|
73
|
+
if (resolvedTargetDirectoryPath.toLowerCase() === 'c:\\windows' || resolvedTargetDirectoryPath.toLowerCase() === 'c:\\windows\\system32') {
|
|
74
|
+
console.error('\n[FATAL] Target directory resolved to a Windows system folder (C:\\Windows).');
|
|
75
|
+
console.error('If you are running Windows npm from inside WSL, this is caused by cmd.exe lacking UNC path support.');
|
|
76
|
+
console.error('Please install and use a native Linux Node.js/npm directly inside WSL to setup your project.');
|
|
77
|
+
process.exit(1);
|
|
78
|
+
}
|
|
79
|
+
|
|
72
80
|
const setupStartedAt = Date.now();
|
|
73
81
|
await ensureDirectory(resolvedTargetDirectoryPath);
|
|
74
82
|
|