@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 +1 -1
- package/skills/ium/contextium.md +28 -7
package/package.json
CHANGED
package/skills/ium/contextium.md
CHANGED
|
@@ -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
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
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.
|