@floomhq/floom-mcp-sync 1.0.33 → 1.0.34

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/dist/lib/paths.js CHANGED
@@ -5,6 +5,12 @@ export function configPath() {
5
5
  return process.env.FLOOM_CONFIG_PATH ?? join(homedir(), ".floom", "config.json");
6
6
  }
7
7
  export function skillsDir() {
8
+ if (!process.env.FLOOM_SKILLS_DIR &&
9
+ !process.env.FLOOM_ALLOW_NATIVE_CODEX_SYNC &&
10
+ process.env.CODEX_SKILLS_DIR &&
11
+ resolve(expandHome(process.env.CODEX_SKILLS_DIR)) === resolve(join(homedir(), ".codex", "skills"))) {
12
+ return join(homedir(), ".floom", "skill-cache", "codex");
13
+ }
8
14
  return expandHome(process.env.FLOOM_SKILLS_DIR
9
15
  ?? process.env.CLAUDE_SKILLS_DIR
10
16
  ?? process.env.CODEX_SKILLS_DIR
package/dist/server.js CHANGED
@@ -5,7 +5,7 @@ import { autoSync } from "./auto-sync.js";
5
5
  import { getSkill } from "./tools/get.js";
6
6
  import { searchSkills } from "./tools/search.js";
7
7
  import { syncStatus } from "./tools/status.js";
8
- const SERVER_VERSION = "1.0.33";
8
+ const SERVER_VERSION = "1.0.34";
9
9
  const DEFAULT_INTERVAL_MS = 60_000;
10
10
  const MIN_INTERVAL_MS = 10_000;
11
11
  const SEARCH_TYPES = new Set(["knowledge", "instruction", "workflow", "skill"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floomhq/floom-mcp-sync",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "Lightweight Floom MCP server for installing, publishing, and startup-syncing skills.",
5
5
  "license": "MIT",
6
6
  "type": "module",