codetyper-cli 0.4.6 → 0.5.1

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 CHANGED
@@ -133,26 +133,26 @@ Press `/` to access all commands organized by category.
133
133
 
134
134
  **Available Commands:**
135
135
 
136
- | Category | Command | Description |
137
- | -------- | ------------ | --------------------------------- |
138
- | General | `/help` | Show available commands |
139
- | General | `/clear` | Clear conversation history |
140
- | General | `/exit` | Exit the chat |
141
- | Session | `/save` | Save current session |
142
- | Session | `/context` | Show context information |
143
- | Session | `/usage` | Show token usage statistics |
144
- | Session | `/remember` | Save a learning about the project |
145
- | Session | `/learnings` | Show saved learnings |
146
- | Settings | `/model` | Select AI model |
147
- | Settings | `/agent` | Select agent |
148
- | Settings | `/mode` | Switch interaction mode |
149
- | Settings | `/provider` | Switch LLM provider |
150
- | Settings | `/status` | Show provider status |
151
- | Settings | `/theme` | Change color theme |
152
- | Settings | `/mcp` | Manage MCP servers |
153
- | Account | `/whoami` | Show logged in account |
154
- | Account | `/login` | Authenticate with provider |
155
- | Account | `/logout` | Sign out from provider |
136
+ | Category | Command | Description |
137
+ | -------- | ------------ | ----------------------------------------------- |
138
+ | General | `/help` | Show available commands |
139
+ | General | `/clear` | Clear conversation history |
140
+ | General | `/exit` | Exit the chat |
141
+ | Session | `/save` | Save current session |
142
+ | Session | `/context` | Show context information |
143
+ | Session | `/usage` | Show token usage with color-coded progress bars |
144
+ | Session | `/remember` | Save a learning about the project |
145
+ | Session | `/learnings` | Show saved learnings |
146
+ | Settings | `/model` | Select AI model |
147
+ | Settings | `/agent` | Select agent |
148
+ | Settings | `/mode` | Switch interaction mode |
149
+ | Settings | `/provider` | Switch LLM provider |
150
+ | Settings | `/status` | Show provider status |
151
+ | Settings | `/theme` | Change color theme |
152
+ | Settings | `/mcp` | Manage MCP servers |
153
+ | Account | `/whoami` | Show logged in account |
154
+ | Account | `/login` | Authenticate with provider |
155
+ | Account | `/logout` | Sign out from provider |
156
156
 
157
157
  ### Agent Mode with Diff View
158
158
 
@@ -193,6 +193,21 @@ Access to multiple AI models through GitHub Copilot.
193
193
  - Grok-code-fast-1
194
194
  - And more...
195
195
 
196
+ ### Copilot Usage Display
197
+
198
+ Real-time monitoring of your GitHub Copilot quota usage directly in the Activity Panel.
199
+
200
+ **Features:**
201
+
202
+ - **Premium Requests** - Track your premium request quota
203
+ - **Chat** - Monitor chat message limits
204
+ - **Completions** - View code completion quota
205
+ - **Color-coded Progress Bars** - Green (>40%), Yellow (5-40%), Red (≤5%)
206
+ - **Auto-refresh** - Updates every 60 seconds and after each task
207
+ - **Reset Date** - Shows when quotas reset
208
+
209
+ Accessible via the Activity Panel (`Ctrl+O`) when using GitHub Copilot provider.
210
+
196
211
  ### Theme System
197
212
 
198
213
  15+ built-in themes to customize your experience.
package/dist/index.js CHANGED
@@ -95776,7 +95776,7 @@ var init_semantic_search = __esm(() => {
95776
95776
  var version_default2;
95777
95777
  var init_version2 = __esm(() => {
95778
95778
  version_default2 = {
95779
- version: "0.4.6"
95779
+ version: "0.4.7"
95780
95780
  };
95781
95781
  });
95782
95782
 
@@ -120599,10 +120599,9 @@ var execute3 = async (options2) => {
120599
120599
  const handleCascadeToggleFn = createHandleCascadeToggle();
120600
120600
  const handleCommand3 = createHandleCommand(ctx, handleExit);
120601
120601
  const handleSubmit2 = createHandleSubmit(ctx, handleCommand3);
120602
- const isResuming = options2.continueSession || options2.resumeSession;
120603
120602
  const savedCascadeEnabled = config2.get("cascadeEnabled");
120604
120603
  const renderProps = {
120605
- sessionId: isResuming ? session.id : undefined,
120604
+ sessionId: session.id,
120606
120605
  handleSubmit: handleSubmit2,
120607
120606
  handleCommand: handleCommand3,
120608
120607
  handleModelSelect: handleModelSelectFn,
@@ -121269,4 +121268,4 @@ ${plan.steps.map((s) => `${s.id}. ${s.description}`).join(`
121269
121268
  });
121270
121269
  program2.parse(process.argv);
121271
121270
 
121272
- //# debugId=A334B0496383E8C764756E2164756E21
121271
+ //# debugId=DB45223ABEBC370864756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codetyper-cli",
3
- "version": "0.4.6",
3
+ "version": "0.5.1",
4
4
  "description": "CodeTyper AI Agent - Standalone CLI for autonomous code generation",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "0.4.6"
2
+ "version": "0.5.1"
3
3
  }