@ryuenn3123/agentic-senior-core 5.8.7 → 5.8.9

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,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-senior-core",
3
- "version": "5.8.7",
3
+ "version": "5.8.9",
4
4
  "displayName": "Agentic Senior Core",
5
5
  "description": "Universal AI coding rules. Write code like a staff engineer.",
6
6
  "author": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-senior-core",
3
- "version": "5.8.7",
3
+ "version": "5.8.9",
4
4
  "description": "Universal AI coding rules. Write code like a staff engineer.",
5
5
  "author": {
6
6
  "name": "fatidaprilian",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-senior-core",
3
- "version": "5.8.7",
3
+ "version": "5.8.9",
4
4
  "description": "Universal AI coding rules. Write code like a staff engineer.",
5
5
  "author": {
6
6
  "name": "fatidaprilian",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agentic-senior-core",
3
3
  "description": "Universal AI coding rules. Write code like a staff engineer.",
4
- "version": "5.8.7",
4
+ "version": "5.8.9",
5
5
  "author": {
6
6
  "name": "fatidaprilian",
7
7
  "url": "https://github.com/fatidaprilian"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-senior-core",
3
- "version": "5.8.7",
3
+ "version": "5.8.9",
4
4
  "description": "Universal AI coding rules. Write code like a staff engineer.",
5
5
  "author": "fatidaprilian",
6
6
  "license": "MIT",
@@ -120,7 +120,7 @@ async function installGlobalTarget(targetKey) {
120
120
 
121
121
  if (target.kind === 'directory') {
122
122
  await fs.mkdir(path.dirname(targetPath), { recursive: true });
123
- await fs.cp(sourcePath, targetPath, { recursive: true, force: true });
123
+ await copyDirRecursive(sourcePath, targetPath);
124
124
  console.log(` ${target.label}: ${targetPath} ... OK`);
125
125
  return true;
126
126
  }
@@ -172,7 +172,7 @@ async function installAntigravityIde(target) {
172
172
 
173
173
  // Copy plugin bundle (plugin.json + skills/) to ~/.gemini/antigravity-ide/plugins/agentic-senior-core/
174
174
  await fs.mkdir(path.dirname(pluginTargetPath), { recursive: true });
175
- await fs.cp(pluginSource, pluginTargetPath, { recursive: true, force: true });
175
+ await copyDirRecursive(pluginSource, pluginTargetPath);
176
176
  console.log(` ${target.label}: plugin -> ${pluginTargetPath} ... OK`);
177
177
 
178
178
  // The IDE automatically loads the plugin bundle's internal rules/ folder!
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@ryuenn3123/agentic-senior-core",
3
- "version": "5.8.7",
3
+ "version": "5.8.9",
4
4
  "type": "module",
5
- "description": "Universal AI coding rules. Write code like a staff engineer, not a junior.",
5
+ "description": "Agentic Senior Core: Universal AI coding rules and workflows. Write code like a staff engineer, not a junior.",
6
6
  "bin": {
7
7
  "asc": "bin/agentic-senior-core.js",
8
8
  "agentic-senior-core": "bin/agentic-senior-core.js",
package/plugin.yaml CHANGED
@@ -1,5 +1,5 @@
1
1
  name: agentic-senior-core
2
- version: 5.8.7
2
+ version: 5.8.9
3
3
  description: Universal AI coding rules. Write code like a staff engineer.
4
4
  author: fatidaprilian
5
5
  provides_hooks: