@ryuenn3123/agentic-senior-core 5.8.10 → 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.
package/gemini-extension.json
CHANGED
|
@@ -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 = {
|
|
@@ -156,6 +155,7 @@ async function installGlobalTarget(targetKey) {
|
|
|
156
155
|
}
|
|
157
156
|
|
|
158
157
|
async function copyDirRecursive(src, dest) {
|
|
158
|
+
console.log("DEBUG COPYDIR:", src, "->", dest);
|
|
159
159
|
await fs.mkdir(dest, { recursive: true });
|
|
160
160
|
const entries = await fs.readdir(src, { withFileTypes: true });
|
|
161
161
|
for (const entry of entries) {
|
package/package.json
CHANGED
package/plugin.yaml
CHANGED