@c4a/context-cli 0.6.1-beta.4 → 0.6.1-beta.5
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/README.md +2 -0
- package/README.zh-CN.md +2 -0
- package/cli.js +6154 -1291
- package/package.json +3 -2
- package/plugins/VERSION +1 -1
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
- package/plugins/codex/.codex-plugin/plugin.json +2 -2
- package/plugins/cursor/.cursor-plugin/plugin.json +1 -1
- package/providers/context/manifest.json +11 -11
- package/providers/context/provider.yaml +1 -1
- package/providers/context/resources/manuals/reference/project-api.md +64 -5
- package/providers/context/resources/procedures/code-extraction.md +6 -0
- package/providers/context/resources/procedures/source-boundary.md +6 -0
- package/providers/context/resources/procedures/source-capture-detailed.md +10 -0
package/README.md
CHANGED
|
@@ -149,6 +149,8 @@ context source add repo [YYYYMMDD] --module <module> --local <repo-or-subdir>
|
|
|
149
149
|
context source add file [YYYYMMDD] --module <module> --local <file-or-folder>
|
|
150
150
|
context source add lark [YYYYMMDD] --module <module> --url <lark-url>
|
|
151
151
|
context source add batch [YYYYMMDD] --input <yaml-or-json>
|
|
152
|
+
context source remove <source-id> --format json # preview
|
|
153
|
+
context source remove <source-id> --yes --format json # apply after reference checks
|
|
152
154
|
context source ensure [source]
|
|
153
155
|
context source inspect [source]
|
|
154
156
|
|
package/README.zh-CN.md
CHANGED
|
@@ -115,6 +115,8 @@ context source add repo [YYYYMMDD] --module <module> --local <repo-or-subdir>
|
|
|
115
115
|
context source add file [YYYYMMDD] --module <module> --local <file-or-folder>
|
|
116
116
|
context source add lark [YYYYMMDD] --module <module> --url <lark-url>
|
|
117
117
|
context source add batch [YYYYMMDD] --input <yaml-or-json>
|
|
118
|
+
context source remove <source-id> --format json # 预览
|
|
119
|
+
context source remove <source-id> --yes --format json # 引用检查通过后执行
|
|
118
120
|
context source ensure [source]
|
|
119
121
|
context source inspect [source]
|
|
120
122
|
|