@sellable/install 0.1.180 → 0.1.182
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/bin/sellable-install.mjs +19 -2
- package/package.json +1 -1
package/bin/sellable-install.mjs
CHANGED
|
@@ -31,7 +31,7 @@ function getInstallVersion() {
|
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
const CODEX_PLUGIN_VERSION = "0.1.
|
|
34
|
+
const CODEX_PLUGIN_VERSION = "0.1.36";
|
|
35
35
|
const CODEX_PLUGIN_COMPAT_VERSIONS = [
|
|
36
36
|
"0.1.8",
|
|
37
37
|
"0.1.9",
|
|
@@ -60,6 +60,7 @@ const CODEX_PLUGIN_COMPAT_VERSIONS = [
|
|
|
60
60
|
"0.1.32",
|
|
61
61
|
"0.1.33",
|
|
62
62
|
"0.1.34",
|
|
63
|
+
"0.1.35",
|
|
63
64
|
];
|
|
64
65
|
const INSTALL_PACKAGE_SPEC =
|
|
65
66
|
process.env.SELLABLE_INSTALL_PACKAGE_SPEC || "@sellable/install@latest";
|
|
@@ -1309,6 +1310,7 @@ allowed-tools:
|
|
|
1309
1310
|
- mcp__sellable__fetch_linkedin_posts
|
|
1310
1311
|
- mcp__sellable__fetch_linkedin_profile
|
|
1311
1312
|
- mcp__sellable__record_engage_proven_search
|
|
1313
|
+
- mcp__sellable__upsert_engage_tracked_person
|
|
1312
1314
|
---
|
|
1313
1315
|
|
|
1314
1316
|
# Sellable Create Post
|
|
@@ -1733,7 +1735,22 @@ function claudeCustomAgents() {
|
|
|
1733
1735
|
}
|
|
1734
1736
|
|
|
1735
1737
|
function writeCodexPluginSkills(pluginRoot, opts) {
|
|
1736
|
-
|
|
1738
|
+
const skills = codexPluginSkills();
|
|
1739
|
+
const currentSkillDirs = new Set(skills.map((skill) => skill.dir));
|
|
1740
|
+
const skillsRoot = join(pluginRoot, "skills");
|
|
1741
|
+
|
|
1742
|
+
if (existsSync(skillsRoot)) {
|
|
1743
|
+
for (const entry of readdirSync(skillsRoot, { withFileTypes: true })) {
|
|
1744
|
+
if (!entry.isDirectory() || currentSkillDirs.has(entry.name)) continue;
|
|
1745
|
+
const stalePath = join(skillsRoot, entry.name);
|
|
1746
|
+
logVerbose(
|
|
1747
|
+
`${C.grey}Removing stale Codex plugin skill ${stalePath}${C.reset}`
|
|
1748
|
+
);
|
|
1749
|
+
if (!opts.dryRun) rmSync(stalePath, { recursive: true, force: true });
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1753
|
+
for (const skill of skills) {
|
|
1737
1754
|
const skillRoot = join(pluginRoot, "skills", skill.dir);
|
|
1738
1755
|
writeFile(join(skillRoot, "SKILL.md"), skill.skillMd, opts);
|
|
1739
1756
|
if (skill.soulMd) {
|