antigravity-seo-kit 2.1.0 → 2.5.0
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/lib/installer.js +2 -12
- package/lib/utils.js +2 -2
- package/package.json +1 -1
package/lib/installer.js
CHANGED
|
@@ -529,7 +529,7 @@ function setupWorkspace(cwd) {
|
|
|
529
529
|
|
|
530
530
|
// Only copy necessary directories. agents and rules are loaded globally via the plugin.
|
|
531
531
|
// skills are copied but filtered to exclude .md files to save space and avoid duplicate prompts/instructions.
|
|
532
|
-
const directoriesToCopy = ['.shared', 'config', 'dashboard', 'docs', 'scripts', 'workflows'
|
|
532
|
+
const directoriesToCopy = ['.shared', 'config', 'dashboard', 'docs', 'scripts', 'workflows'];
|
|
533
533
|
const filesToCopy = ['seo-architecture.md'];
|
|
534
534
|
|
|
535
535
|
let count = 0;
|
|
@@ -537,17 +537,7 @@ function setupWorkspace(cwd) {
|
|
|
537
537
|
const src = path.join(globalDir, dir);
|
|
538
538
|
const dest = path.join(localAgentDir, dir);
|
|
539
539
|
if (fs.existsSync(src)) {
|
|
540
|
-
|
|
541
|
-
// Keep scripts and assets, but exclude instruction/documentation markdown files
|
|
542
|
-
count += copyRecursive(src, dest, {
|
|
543
|
-
overwrite: true,
|
|
544
|
-
filter: (filePath) => !filePath.endsWith('.md')
|
|
545
|
-
});
|
|
546
|
-
} else if (dir === 'config') {
|
|
547
|
-
count += copyRecursive(src, dest, { overwrite: true });
|
|
548
|
-
} else {
|
|
549
|
-
count += copyRecursive(src, dest, { overwrite: true });
|
|
550
|
-
}
|
|
540
|
+
count += copyRecursive(src, dest, { overwrite: true });
|
|
551
541
|
}
|
|
552
542
|
}
|
|
553
543
|
for (const file of filesToCopy) {
|
package/lib/utils.js
CHANGED
|
@@ -290,7 +290,7 @@ function isValidKeyFormat(key) {
|
|
|
290
290
|
const BANNER = `
|
|
291
291
|
${colorize('cyan', '╔═══════════════════════════════════════════════════════╗')}
|
|
292
292
|
${colorize('cyan', '║')} ${colorize('bold', '🔍 SEO Kit for Google Antigravity')} ${colorize('cyan', '║')}
|
|
293
|
-
${colorize('cyan', '║')} ${colorize('dim', 'v2.
|
|
293
|
+
${colorize('cyan', '║')} ${colorize('dim', 'v2.5.0 — Professional Agentic SEO Platform')} ${colorize('cyan', '║')}
|
|
294
294
|
${colorize('cyan', '╚═══════════════════════════════════════════════════════╝')}
|
|
295
295
|
`;
|
|
296
296
|
|
|
@@ -418,7 +418,7 @@ module.exports = {
|
|
|
418
418
|
writeLicenseFile,
|
|
419
419
|
removeLicenseFile,
|
|
420
420
|
LICENSE_FILE,
|
|
421
|
-
PACKAGE_VERSION: '2.
|
|
421
|
+
PACKAGE_VERSION: '2.5.0',
|
|
422
422
|
deepMergeJson,
|
|
423
423
|
smartMergeJsonFile,
|
|
424
424
|
isJsonWithApiKey,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antigravity-seo-kit",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "Professional Agentic SEO Platform for Google Antigravity 2 AI Agent — 44 specialized skills covering technical audit, E-E-A-T, schema, GEO, local SEO & more",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|