@truenine/memory-sync-cli 2026.10103.10253 → 2026.10105.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.
Files changed (3) hide show
  1. package/dist/index.mjs +54 -42
  2. package/package.json +3 -1
  3. package/README.md +0 -157
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@truenine/memory-sync-cli",
3
3
  "type": "module",
4
- "version": "2026.10103.10253",
4
+ "version": "2026.10105.0",
5
5
  "description": "TrueNine Life CLI Tools",
6
6
  "author": "TrueNine",
7
7
  "license": "UNLICENSED",
@@ -34,10 +34,12 @@
34
34
  "@clack/prompts": "^0.11.0",
35
35
  "fast-glob": "^3.3.3",
36
36
  "fs-extra": "^11.3.3",
37
+ "mdast-util-mdx": "^3.0.0",
37
38
  "picocolors": "^1.1.1",
38
39
  "picomatch": "^4.0.3",
39
40
  "remark-frontmatter": "^5.0.0",
40
41
  "remark-gfm": "^4.0.1",
42
+ "remark-mdx": "^3.1.1",
41
43
  "remark-parse": "^11.0.0",
42
44
  "remark-stringify": "^11.0.0",
43
45
  "unified": "^11.0.5",
package/README.md DELETED
@@ -1,157 +0,0 @@
1
- # # memory-sync-cli
2
-
3
- Cross-AI programming tool prompt synchronisation utility. One ruleset, multi-platform adaptation.
4
-
5
- ## Quick Start
6
-
7
- ```bash
8
- npx @truenine/memory-sync-cli
9
- ```
10
-
11
- ## Global Installation
12
-
13
- ```bash
14
- pnpm add -g @truenine/memory-sync-cli
15
- ```
16
-
17
- ## Update Version
18
-
19
- ```bash
20
- pnpm update -g @truenine/memory-sync-cli --latest
21
- ```
22
-
23
- After installation, use the command directly:
24
-
25
- ```bash
26
- tnmsc
27
- ```
28
-
29
- Available features:
30
-
31
- ```bash
32
- # Direct sync
33
- tnmsc
34
-
35
- # Get help
36
- tnmsc help
37
- tnmsc --help
38
- tnmsc -h
39
-
40
- # View version
41
- tnmsc version
42
- tnmsc --version
43
- tnmsc -v
44
-
45
- # Check for updates
46
- tnmsc outdated
47
-
48
- # Initialise directory and file structure based on config file and defaults
49
- tnmsc init
50
-
51
- # Preview export
52
- tnmsc dry-run
53
-
54
- # Clean all exports
55
- tnmsc clean
56
-
57
- # Preview clean targets
58
- tnmsc clean --dry-run
59
- tnmsc clean -n
60
-
61
- # Set config options
62
- tnmsc set key=value
63
- tnmsc --set key=value
64
-
65
- # Set log level
66
- tnmsc --trace
67
- tnmsc --debug
68
- tnmsc --info
69
- tnmsc --warn
70
- tnmsc --error
71
- ```
72
-
73
- ## CLI Configuration
74
-
75
- Configuration can be created in two locations. Example below shows default config:
76
-
77
- ```text
78
- ~/.aindex/.tnmsc.json
79
- cwd()/.tnmsc.json
80
- ```
81
- > cwd() represents the current command execution directory.
82
-
83
-
84
- ```json
85
- {
86
- "workspaceDir": "~/project",
87
- "shadowSourceProjectDir": "$WORKSPACE/aindex",
88
- "shadowSkillSourceDir": "$SHADOW_SOURCE_PROJECT/dist/skills",
89
- "shadowFastCommandDir": "$SHADOW_SOURCE_PROJECT/dist/commands",
90
- "shadowSubAgentDir": "$SHADOW_SOURCE_PROJECT/dist/agents",
91
- "globalMemoryFile": "$SHADOW_SOURCE_PROJECT/dist/GLOBAL.md",
92
- "shadowProjectsDir": "$SHADOW_SOURCE_PROJECT/dist/app",
93
- "externalProjects": [],
94
- "excludePatterns": {},
95
- "logLevel": "info"
96
- }
97
- ```
98
-
99
- ### SET Available Config Options
100
-
101
- - `workspaceDir` - Workspace directory
102
- - `shadowSourceProjectDir` - Shadow source project directory
103
- - `shadowSkillSourceDir` - Skill source directory
104
- - `shadowFastCommandDir` - Fast command directory
105
- - `shadowSubAgentDir` - Sub-agent directory
106
- - `globalMemoryFile` - Global memory file
107
- - `shadowProjectsDir` - Shadow projects directory
108
- - `logLevel` - Log level (trace/debug/info/warn/error)
109
-
110
- Example:
111
- ```bash
112
- tnmsc --set workspaceDir=~/my-project
113
- tnmsc --set logLevel=debug
114
- tnmsc set workspaceDir=~/workspace
115
- ```
116
-
117
- ## Supported AI Tools
118
-
119
- **IDE**
120
- - Cursor IDE
121
- - Kiro IDE
122
- - Windsurf IDE
123
- - Qoder IDE
124
- - CodeBuddy IDE
125
- - Antigravity IDE
126
-
127
- **CLI Tools**
128
- - Claude Code CLI
129
- - Codex CLI
130
- - Gemini CLI
131
- - FactoryDroid CLI
132
-
133
- **Config Files**
134
- - JetBrains IDE
135
- - VSCode IDE
136
-
137
- ## Plugin System
138
-
139
- Uses input → transform → output pipeline architecture:
140
-
141
- - **Input Plugins**: Read source files (Aindex, Ref, WorkspaceGroup)
142
- - **Transform Plugins**: Process content
143
- - **Output Plugins**: Write to target formats (various IDE/CLI adapters)
144
-
145
- ## Configuration
146
-
147
- Config file priority: `cwd()/.tnmsc.json` > `~/.aindex/.tnmsc.json`
148
-
149
- ## Created by
150
-
151
- - [Truenine](https://github.com/TrueNine)
152
- - [zjarlin](https://github.com/zjarlin)
153
-
154
-
155
- ## License
156
-
157
- UNLICENSED