@ryuenn3123/agentic-senior-core 5.8.9 → 5.8.11

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.9",
3
+ "version": "5.8.11",
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.9",
3
+ "version": "5.8.11",
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.9",
3
+ "version": "5.8.11",
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.9",
4
+ "version": "5.8.11",
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.9",
3
+ "version": "5.8.11",
4
4
  "description": "Universal AI coding rules. Write code like a staff engineer.",
5
5
  "author": "fatidaprilian",
6
6
  "license": "MIT",
@@ -22,7 +22,6 @@ function vscodeUserPromptsDirectory() {
22
22
 
23
23
  const OLD_PATHS = [
24
24
  path.join(HOME, '.gemini', 'config', 'skills'),
25
- path.join(HOME, '.gemini', 'antigravity-ide', 'plugins', 'agentic-senior-core'), // Clean up 5.8.4 mistake
26
25
  ];
27
26
 
28
27
  const GLOBAL_TARGETS = {
@@ -155,6 +154,21 @@ async function installGlobalTarget(targetKey) {
155
154
  return true;
156
155
  }
157
156
 
157
+ async function copyDirRecursive(src, dest) {
158
+ console.log("DEBUG COPYDIR:", src, "->", dest);
159
+ await fs.mkdir(dest, { recursive: true });
160
+ const entries = await fs.readdir(src, { withFileTypes: true });
161
+ for (const entry of entries) {
162
+ const srcPath = path.join(src, entry.name);
163
+ const destPath = path.join(dest, entry.name);
164
+ if (entry.isDirectory()) {
165
+ await copyDirRecursive(srcPath, destPath);
166
+ } else {
167
+ await fs.copyFile(srcPath, destPath);
168
+ }
169
+ }
170
+ }
171
+
158
172
  async function installAntigravityIde(target) {
159
173
  const pluginSource = path.join(REPOSITORY_ROOT, target.pluginSourcePath);
160
174
  const rulesSource = path.join(REPOSITORY_ROOT, target.rulesSourcePath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryuenn3123/agentic-senior-core",
3
- "version": "5.8.9",
3
+ "version": "5.8.11",
4
4
  "type": "module",
5
5
  "description": "Agentic Senior Core: Universal AI coding rules and workflows. Write code like a staff engineer, not a junior.",
6
6
  "bin": {
package/plugin.yaml CHANGED
@@ -1,5 +1,5 @@
1
1
  name: agentic-senior-core
2
- version: 5.8.9
2
+ version: 5.8.11
3
3
  description: Universal AI coding rules. Write code like a staff engineer.
4
4
  author: fatidaprilian
5
5
  provides_hooks: