@ryuenn3123/agentic-senior-core 5.8.17 → 5.8.19
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/hooks/pre-tool-dependency-gate.js +4 -2
- package/.agents/plugins/agentic-senior-core/plugin.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.devin-plugin/plugin.json +1 -1
- package/.github/plugin/plugin.json +1 -1
- package/gemini-extension.json +1 -1
- package/hooks/pre-tool-dependency-gate.js +4 -2
- package/package.json +1 -1
- package/plugin.yaml +1 -1
- /package/.agents/plugins/agentic-senior-core/{hooks/hooks.json → hooks.json} +0 -0
|
@@ -73,14 +73,16 @@ process.stdin.on('end', function () {
|
|
|
73
73
|
+ 'Ladder step 3: use stdlib/native features instead, or add to .asc/dependency-allowlist.json to override.';
|
|
74
74
|
|
|
75
75
|
const output = {
|
|
76
|
+
allow_tool: false,
|
|
77
|
+
deny_reason: reason,
|
|
76
78
|
hookSpecificOutput: {
|
|
77
79
|
hookEventName: 'PreToolUse',
|
|
78
80
|
permissionDecision: 'deny',
|
|
79
81
|
permissionDecisionReason: reason
|
|
80
82
|
}
|
|
81
83
|
};
|
|
82
|
-
process.stdout.write(JSON.stringify(output));
|
|
83
|
-
process.exit(
|
|
84
|
+
process.stdout.write(JSON.stringify(output) + '\n');
|
|
85
|
+
process.exit(2);
|
|
84
86
|
return;
|
|
85
87
|
}
|
|
86
88
|
} catch (_) {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-senior-core",
|
|
3
|
-
"version": "5.8.
|
|
3
|
+
"version": "5.8.19",
|
|
4
4
|
"description": "Universal AI coding rules. Write code like a staff engineer.",
|
|
5
5
|
"contextFileName": "rules/agentic-senior-core.md",
|
|
6
6
|
"rules": ["rules/"],
|
|
7
7
|
"commands": ["commands/"],
|
|
8
8
|
"skills": ["skills/"],
|
|
9
|
-
"hooks": "hooks
|
|
9
|
+
"hooks": "hooks.json"
|
|
10
10
|
}
|
package/gemini-extension.json
CHANGED
|
@@ -73,14 +73,16 @@ process.stdin.on('end', function () {
|
|
|
73
73
|
+ 'Ladder step 3: use stdlib/native features instead, or add to .asc/dependency-allowlist.json to override.';
|
|
74
74
|
|
|
75
75
|
const output = {
|
|
76
|
+
allow_tool: false,
|
|
77
|
+
deny_reason: reason,
|
|
76
78
|
hookSpecificOutput: {
|
|
77
79
|
hookEventName: 'PreToolUse',
|
|
78
80
|
permissionDecision: 'deny',
|
|
79
81
|
permissionDecisionReason: reason
|
|
80
82
|
}
|
|
81
83
|
};
|
|
82
|
-
process.stdout.write(JSON.stringify(output));
|
|
83
|
-
process.exit(
|
|
84
|
+
process.stdout.write(JSON.stringify(output) + '\n');
|
|
85
|
+
process.exit(2);
|
|
84
86
|
return;
|
|
85
87
|
}
|
|
86
88
|
} catch (_) {
|
package/package.json
CHANGED
package/plugin.yaml
CHANGED
|
File without changes
|