@openlor/dotai 0.1.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.
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "claude",
3
+ "description": "Claude Code by Anthropic",
4
+ "configDir": "~/.claude",
5
+ "portable": ["settings.json", "commands/", "skills/", "plugins/config.json", "plugins/installed_plugins.json", "statusline-command.sh"],
6
+ "ephemeral": ["sessions/", "session-env/", "cache/", "shell-snapshots/", "debug/", "paste-cache/", "file-history/", "plans/", "ide/", "backups/", "history.jsonl", ".session-stats.json", "policy-limits.json", "mcp-needs-auth-cache.json", "statsig/", "stats-cache.json", "plugins/cache/"],
7
+ "credentials": ["auth.json"]
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "codex",
3
+ "description": "Codex CLI by OpenAI",
4
+ "configDir": "~/.codex",
5
+ "portable": ["config.toml", "rules/", "skills/", "prompts/"],
6
+ "ephemeral": ["history.jsonl", "sessions/", "log/", "*.sqlite", "models_cache.json", "shell_snapshots/", "tmp/", ".codex-global-state.json", "version.json"],
7
+ "credentials": ["auth.json"]
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "claude",
3
+ "description": "Claude Code by Anthropic",
4
+ "configDir": "~/.claude",
5
+ "portable": ["settings.json", "commands/", "skills/", "plugins/config.json", "plugins/installed_plugins.json", "statusline-command.sh"],
6
+ "ephemeral": ["sessions/", "session-env/", "cache/", "shell-snapshots/", "debug/", "paste-cache/", "file-history/", "plans/", "ide/", "backups/", "history.jsonl", ".session-stats.json", "policy-limits.json", "mcp-needs-auth-cache.json", "statsig/", "stats-cache.json", "plugins/cache/"],
7
+ "credentials": ["auth.json"]
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "codex",
3
+ "description": "Codex CLI by OpenAI",
4
+ "configDir": "~/.codex",
5
+ "portable": ["config.toml", "rules/", "skills/", "prompts/"],
6
+ "ephemeral": ["history.jsonl", "sessions/", "log/", "*.sqlite", "models_cache.json", "shell_snapshots/", "tmp/", ".codex-global-state.json", "version.json"],
7
+ "credentials": ["auth.json"]
8
+ }
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@openlor/dotai",
3
+ "version": "0.1.0",
4
+ "description": "AI CLI config manager — sync Claude Code, Codex, and more between machines",
5
+ "type": "module",
6
+ "bin": {
7
+ "dotai": "./dist/cli.js"
8
+ },
9
+ "scripts": {
10
+ "build": "bun build src/cli.ts --outdir dist --target node && cp -r src/profiles dist/profiles",
11
+ "test": "vitest run",
12
+ "test:watch": "vitest",
13
+ "dev": "bun run src/cli.ts"
14
+ },
15
+ "keywords": ["dotfiles", "ai", "claude-code", "codex", "config", "sync"],
16
+ "license": "MIT",
17
+ "files": ["dist/"],
18
+ "engines": {
19
+ "node": ">=18"
20
+ },
21
+ "dependencies": {
22
+ "chalk": "^5.6.2",
23
+ "commander": "^14.0.3"
24
+ },
25
+ "devDependencies": {
26
+ "@types/node": "^25.5.0",
27
+ "typescript": "^5.9.3",
28
+ "vitest": "^4.1.0"
29
+ }
30
+ }