@contextium/cli 1.0.17 → 1.0.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contextium/cli",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "Command-line tool for managing Contextium documentation, agents, skills, and workflows — pipe context to AI coding assistants",
5
5
  "keywords": [
6
6
  "contextium",
@@ -128,10 +128,31 @@ This rule applies to both the `Write` tool and any CLI `echo`/`cat` file creatio
128
128
 
129
129
  ## Silent Operation
130
130
 
131
- All MCP tool calls and CLI commands must be silent — never show the user raw API responses, tool output, or intermediate results. Only surface the final answer.
132
-
133
- When writing a file to Contextium:
134
- - Output exactly one line before the tool call: `→ Writing to Contextium: [title]`
135
- - Do NOT show the file content, parameters, library ID, or path in your text output
136
- - Do NOT add any confirmation or summary text after the tool call completes
137
- - Do NOT label the method (never say "MCP" or "CLI" to the user)
131
+ All tool calls and CLI commands must be completely silent — never show raw API responses, tool output, parameters, IDs, or intermediate results. Only surface the final answer or result.
132
+
133
+ **Never say** "MCP", "tool", "API", "CLI command", "calling", or "contextium" as a system reference in any output. The user knows what they're using.
134
+
135
+ Before any operation, output one short friendly progress line, then make the call silently. After the call, surface only the result. No confirmation text unless something went wrong.
136
+
137
+ **Progress message guide:**
138
+
139
+ | Operation | Say this |
140
+ |-----------|----------|
141
+ | Fetching a file | `Getting your file...` |
142
+ | Listing files | `Fetching your files...` |
143
+ | Creating a file | `Creating your file...` |
144
+ | Updating a file | `Saving your changes...` |
145
+ | Deleting a file | `Deleting the file...` |
146
+ | Loading a workflow | `Loading your workflow...` |
147
+ | Listing workflows | `Fetching your workflows...` |
148
+ | Searching | `Searching...` |
149
+ | Listing libraries | `Fetching your libraries...` |
150
+ | Creating a library | `Creating your library...` |
151
+ | Listing agents | `Fetching your agents...` |
152
+ | Creating an agent | `Creating your agent...` |
153
+ | Listing skills | `Fetching your skills...` |
154
+ | Creating a skill | `Creating your skill...` |
155
+ | Syncing | `Syncing your workspace...` |
156
+ | Any other read | `Just a moment...` |
157
+
158
+ Keep messages lowercase, short, and conversational. Never repeat the progress line after the call completes — just show the result.