codeep 1.2.4 → 1.2.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.
@@ -51,6 +51,9 @@ export const helpCategories = [
51
51
  { key: '/git-commit <msg>', description: 'Commit with message' },
52
52
  { key: '/push (/p)', description: 'Git push' },
53
53
  { key: '/pull', description: 'Git pull' },
54
+ { key: '/amend', description: 'Amend last commit' },
55
+ { key: '/branch', description: 'Create/manage branches' },
56
+ { key: '/stash', description: 'Stash changes' },
54
57
  { key: '/scan', description: 'Scan project structure' },
55
58
  { key: '/review', description: 'Code review' },
56
59
  ],
@@ -40,7 +40,7 @@ function getStatus() {
40
40
  projectPath,
41
41
  hasWriteAccess,
42
42
  sessionId,
43
- messageCount: 0, // Will be updated
43
+ messageCount: app ? app.getMessages().length : 0,
44
44
  tokenStats: {
45
45
  totalTokens: stats.totalTokens,
46
46
  promptTokens: stats.totalPromptTokens,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",