@brianlovin/notion-skills
Version:
Sync agent skills from a Notion database to Claude Code, Codex, OpenCode, Cursor, Gemini CLI.
16 lines • 764 B
JavaScript
import { homedir } from "node:os";
import { join } from "node:path";
export const HOME = homedir();
export const ROOT_DIR = join(HOME, ".notion-skills");
export const SCOPE_FILE = join(ROOT_DIR, "scope.json");
export const MANIFEST_FILE = join(ROOT_DIR, "manifest.json");
export const LOGS_DIR = join(ROOT_DIR, "logs");
export const NTN_ERROR_LOG = join(LOGS_DIR, "ntn-errors.log");
/**
* The one and only place skills live on disk. Skills synced from Notion
* land here; skills authored locally (by `gen` or by hand) are written
* here directly. The manifest tells us which entries are also in Notion;
* everything else is a local-only skill that `migrate` will push.
*/
export const SKILLS_STORE = join(ROOT_DIR, "skills");
//# sourceMappingURL=paths.js.map