gencode-ai 0.2.0 → 0.4.0
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/RELEASE_NOTES_v0.4.0.md +140 -0
- package/dist/agent/agent.d.ts +26 -4
- package/dist/agent/agent.d.ts.map +1 -1
- package/dist/agent/agent.js +316 -57
- package/dist/agent/agent.js.map +1 -1
- package/dist/agent/types.d.ts +20 -2
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/checkpointing/checkpoint-manager.d.ts +24 -0
- package/dist/checkpointing/checkpoint-manager.d.ts.map +1 -1
- package/dist/checkpointing/checkpoint-manager.js +28 -0
- package/dist/checkpointing/checkpoint-manager.js.map +1 -1
- package/dist/cli/components/App.d.ts +8 -0
- package/dist/cli/components/App.d.ts.map +1 -1
- package/dist/cli/components/App.js +493 -45
- package/dist/cli/components/App.js.map +1 -1
- package/dist/cli/components/CommandSuggestions.d.ts.map +1 -1
- package/dist/cli/components/CommandSuggestions.js +2 -0
- package/dist/cli/components/CommandSuggestions.js.map +1 -1
- package/dist/cli/components/Header.d.ts +6 -1
- package/dist/cli/components/Header.d.ts.map +1 -1
- package/dist/cli/components/Header.js +3 -3
- package/dist/cli/components/Header.js.map +1 -1
- package/dist/cli/components/Messages.d.ts.map +1 -1
- package/dist/cli/components/Messages.js +8 -10
- package/dist/cli/components/Messages.js.map +1 -1
- package/dist/cli/components/ModelSelector.d.ts +4 -3
- package/dist/cli/components/ModelSelector.d.ts.map +1 -1
- package/dist/cli/components/ModelSelector.js +54 -37
- package/dist/cli/components/ModelSelector.js.map +1 -1
- package/dist/cli/components/ProviderManager.d.ts +2 -2
- package/dist/cli/components/ProviderManager.d.ts.map +1 -1
- package/dist/cli/components/ProviderManager.js +137 -156
- package/dist/cli/components/ProviderManager.js.map +1 -1
- package/dist/cli/index.js +33 -15
- package/dist/cli/index.js.map +1 -1
- package/dist/config/index.d.ts +2 -2
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +1 -1
- package/dist/config/index.js.map +1 -1
- package/dist/config/levels.d.ts +5 -5
- package/dist/config/levels.d.ts.map +1 -1
- package/dist/config/levels.js +20 -20
- package/dist/config/levels.js.map +1 -1
- package/dist/config/merger.js +1 -1
- package/dist/config/merger.js.map +1 -1
- package/dist/config/providers-config.d.ts +8 -5
- package/dist/config/providers-config.d.ts.map +1 -1
- package/dist/config/providers-config.js +19 -22
- package/dist/config/providers-config.js.map +1 -1
- package/dist/config/test-utils.d.ts +2 -2
- package/dist/config/test-utils.d.ts.map +1 -1
- package/dist/config/test-utils.js +4 -4
- package/dist/config/test-utils.js.map +1 -1
- package/dist/config/types.d.ts +42 -17
- package/dist/config/types.d.ts.map +1 -1
- package/dist/config/types.js +14 -14
- package/dist/config/types.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/input/history-manager.d.ts +78 -0
- package/dist/input/history-manager.d.ts.map +1 -0
- package/dist/input/history-manager.js +224 -0
- package/dist/input/history-manager.js.map +1 -0
- package/dist/input/index.d.ts +6 -0
- package/dist/input/index.d.ts.map +1 -0
- package/dist/input/index.js +5 -0
- package/dist/input/index.js.map +1 -0
- package/dist/memory/memory-manager.d.ts +25 -12
- package/dist/memory/memory-manager.d.ts.map +1 -1
- package/dist/memory/memory-manager.js +241 -112
- package/dist/memory/memory-manager.js.map +1 -1
- package/dist/memory/test-utils.d.ts +1 -1
- package/dist/memory/test-utils.d.ts.map +1 -1
- package/dist/memory/test-utils.js +3 -3
- package/dist/memory/test-utils.js.map +1 -1
- package/dist/memory/types.d.ts +20 -10
- package/dist/memory/types.d.ts.map +1 -1
- package/dist/memory/types.js +13 -13
- package/dist/memory/types.js.map +1 -1
- package/dist/migration/migrate.d.ts +24 -0
- package/dist/migration/migrate.d.ts.map +1 -0
- package/dist/migration/migrate.js +164 -0
- package/dist/migration/migrate.js.map +1 -0
- package/dist/permissions/persistence.d.ts +2 -2
- package/dist/permissions/persistence.js +4 -4
- package/dist/permissions/persistence.js.map +1 -1
- package/dist/planning/plan-file.d.ts +1 -1
- package/dist/planning/plan-file.js +2 -2
- package/dist/planning/plan-file.js.map +1 -1
- package/dist/prompts/index.d.ts +5 -4
- package/dist/prompts/index.d.ts.map +1 -1
- package/dist/prompts/index.js +13 -10
- package/dist/prompts/index.js.map +1 -1
- package/dist/providers/anthropic.d.ts +2 -1
- package/dist/providers/anthropic.d.ts.map +1 -1
- package/dist/providers/anthropic.js +7 -0
- package/dist/providers/anthropic.js.map +1 -1
- package/dist/providers/gemini.d.ts +2 -1
- package/dist/providers/gemini.d.ts.map +1 -1
- package/dist/providers/gemini.js +40 -2
- package/dist/providers/gemini.js.map +1 -1
- package/dist/providers/google.d.ts +22 -0
- package/dist/providers/google.d.ts.map +1 -0
- package/dist/providers/google.js +297 -0
- package/dist/providers/google.js.map +1 -0
- package/dist/providers/index.d.ts +22 -12
- package/dist/providers/index.d.ts.map +1 -1
- package/dist/providers/index.js +56 -32
- package/dist/providers/index.js.map +1 -1
- package/dist/providers/openai.d.ts +2 -1
- package/dist/providers/openai.d.ts.map +1 -1
- package/dist/providers/openai.js +13 -0
- package/dist/providers/openai.js.map +1 -1
- package/dist/providers/registry.d.ts +48 -34
- package/dist/providers/registry.d.ts.map +1 -1
- package/dist/providers/registry.js +72 -88
- package/dist/providers/registry.js.map +1 -1
- package/dist/providers/store.d.ts +43 -17
- package/dist/providers/store.d.ts.map +1 -1
- package/dist/providers/store.js +112 -19
- package/dist/providers/store.js.map +1 -1
- package/dist/providers/types.d.ts +52 -3
- package/dist/providers/types.d.ts.map +1 -1
- package/dist/providers/vertex-ai.d.ts +15 -7
- package/dist/providers/vertex-ai.d.ts.map +1 -1
- package/dist/providers/vertex-ai.js +46 -13
- package/dist/providers/vertex-ai.js.map +1 -1
- package/dist/session/compression/engine.d.ts +109 -0
- package/dist/session/compression/engine.d.ts.map +1 -0
- package/dist/session/compression/engine.js +311 -0
- package/dist/session/compression/engine.js.map +1 -0
- package/dist/session/compression/index.d.ts +12 -0
- package/dist/session/compression/index.d.ts.map +1 -0
- package/dist/session/compression/index.js +11 -0
- package/dist/session/compression/index.js.map +1 -0
- package/dist/session/compression/types.d.ts +90 -0
- package/dist/session/compression/types.d.ts.map +1 -0
- package/dist/session/compression/types.js +17 -0
- package/dist/session/compression/types.js.map +1 -0
- package/dist/session/manager.d.ts +64 -3
- package/dist/session/manager.d.ts.map +1 -1
- package/dist/session/manager.js +254 -2
- package/dist/session/manager.js.map +1 -1
- package/dist/session/types.d.ts +16 -0
- package/dist/session/types.d.ts.map +1 -1
- package/dist/session/types.js +1 -1
- package/dist/session/types.js.map +1 -1
- package/docs/README.md +1 -0
- package/docs/config-system-comparison.md +50 -50
- package/docs/cost-tracking-comparison.md +2 -2
- package/docs/diagrams/compression-decision.mmd +30 -0
- package/docs/diagrams/compression-workflow.mmd +54 -0
- package/docs/diagrams/layer1-pruning.mmd +45 -0
- package/docs/diagrams/layer2-compaction.mmd +42 -0
- package/docs/memory-system.md +124 -31
- package/docs/permissions.md +2 -2
- package/docs/proposals/0006-memory-system.md +4 -4
- package/docs/proposals/0007-context-management.md +252 -2
- package/docs/proposals/0008-checkpointing.md +109 -2
- package/docs/proposals/0011-custom-commands.md +2 -1
- package/docs/proposals/0021-skills-system.md +2 -1
- package/docs/proposals/0023-permission-enhancements.md +2 -2
- package/docs/proposals/0033-enterprise-deployment.md +1 -1
- package/docs/proposals/0041-configuration-system.md +17 -19
- package/docs/proposals/0042-prompt-optimization.md +17 -9
- package/docs/proposals/README.md +8 -7
- package/docs/providers.md +96 -11
- package/docs/session-compression.md +695 -0
- package/examples/agent-demo.ts +23 -1
- package/examples/basic.ts +3 -3
- package/package.json +2 -2
- package/scripts/migrate.ts +449 -0
- package/src/agent/agent.ts +365 -61
- package/src/agent/types.ts +24 -2
- package/src/checkpointing/checkpoint-manager.ts +48 -0
- package/src/cli/components/App.tsx +570 -42
- package/src/cli/components/CommandSuggestions.tsx +2 -0
- package/src/cli/components/Header.tsx +16 -1
- package/src/cli/components/Messages.tsx +21 -15
- package/src/cli/components/ModelSelector.tsx +62 -43
- package/src/cli/components/ProviderManager.tsx +278 -323
- package/src/cli/index.tsx +38 -18
- package/src/config/index.ts +5 -3
- package/src/config/levels.test.ts +22 -22
- package/src/config/levels.ts +22 -22
- package/src/config/loader.test.ts +14 -14
- package/src/config/manager.test.ts +19 -19
- package/src/config/merger.test.ts +23 -23
- package/src/config/merger.ts +1 -1
- package/src/config/providers-config.ts +23 -21
- package/src/config/test-utils.ts +6 -6
- package/src/config/types.ts +55 -20
- package/src/index.ts +3 -3
- package/src/input/history-manager.ts +289 -0
- package/src/input/index.ts +6 -0
- package/src/memory/memory-manager.test.ts +242 -24
- package/src/memory/memory-manager.ts +270 -141
- package/src/memory/test-utils.ts +4 -4
- package/src/memory/types.ts +28 -17
- package/src/permissions/persistence.ts +4 -4
- package/src/planning/plan-file.ts +2 -2
- package/src/prompts/index.test.ts +2 -1
- package/src/prompts/index.ts +15 -11
- package/src/providers/anthropic.ts +9 -0
- package/src/providers/{gemini.ts → google.ts} +75 -15
- package/src/providers/index.ts +85 -42
- package/src/providers/openai.ts +16 -0
- package/src/providers/registry.ts +116 -111
- package/src/providers/store.ts +130 -28
- package/src/providers/types.ts +65 -3
- package/src/providers/vertex-ai.ts +49 -13
- package/src/session/compression/engine.ts +406 -0
- package/src/session/compression/index.ts +18 -0
- package/src/session/compression/types.ts +102 -0
- package/src/session/manager.ts +326 -3
- package/src/session/types.ts +22 -1
- package/tests/input-history-manager.test.ts +335 -0
- package/tests/session-checkpoint-persistence.test.ts +198 -0
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
# Release Notes - v0.4.0
|
|
2
|
+
|
|
3
|
+
## 🔄 Breaking Changes
|
|
4
|
+
|
|
5
|
+
### Provider Rename: Gemini → Google
|
|
6
|
+
|
|
7
|
+
We've renamed the "Gemini" provider to "Google" for better naming consistency.
|
|
8
|
+
|
|
9
|
+
**Rationale:**
|
|
10
|
+
- Provider = Company (Google, OpenAI, Anthropic)
|
|
11
|
+
- Model = Product (Gemini, GPT, Claude)
|
|
12
|
+
- Aligns with industry naming patterns
|
|
13
|
+
|
|
14
|
+
**Changes:**
|
|
15
|
+
- Provider ID: `'gemini'` → `'google'`
|
|
16
|
+
- TypeScript: `GeminiProvider` → `GoogleProvider`, `GeminiConfig` → `GoogleConfig`
|
|
17
|
+
|
|
18
|
+
**Unchanged:**
|
|
19
|
+
- ✅ Model names: `gemini-2.0-flash`, `gemini-1.5-pro`, etc.
|
|
20
|
+
- ✅ Environment variables: `GOOGLE_API_KEY` and `GEMINI_API_KEY` both supported
|
|
21
|
+
- ✅ All functionality identical
|
|
22
|
+
|
|
23
|
+
### Migration Required
|
|
24
|
+
|
|
25
|
+
**Automatic Migration (Recommended):**
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
# macOS
|
|
29
|
+
sed -i '' 's/"gemini":/"google":/g' ~/.gen/providers.json
|
|
30
|
+
sed -i '' 's/"gemini:/"google:/g' ~/.gen/providers.json
|
|
31
|
+
sed -i '' 's/"provider": "gemini"/"provider": "google"/g' ~/.gen/settings.json
|
|
32
|
+
|
|
33
|
+
# Linux
|
|
34
|
+
sed -i 's/"gemini":/"google":/g' ~/.gen/providers.json
|
|
35
|
+
sed -i 's/"gemini:/"google:/g' ~/.gen/providers.json
|
|
36
|
+
sed -i 's/"provider": "gemini"/"provider": "google"/g' ~/.gen/settings.json
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**Manual Migration:**
|
|
40
|
+
|
|
41
|
+
1. **`~/.gen/settings.json`**: Change `"provider": "gemini"` → `"provider": "google"`
|
|
42
|
+
2. **`~/.gen/providers.json`**:
|
|
43
|
+
- Rename connection: `"gemini": {...}` → `"google": {...}`
|
|
44
|
+
- Rename model cache: `"gemini:api_key": {...}` → `"google:api_key": {...}`
|
|
45
|
+
|
|
46
|
+
**For SDK Users:**
|
|
47
|
+
|
|
48
|
+
```typescript
|
|
49
|
+
// Before
|
|
50
|
+
import { GeminiProvider, type GeminiConfig } from 'gencode-ai';
|
|
51
|
+
const provider = new GeminiProvider();
|
|
52
|
+
|
|
53
|
+
// After
|
|
54
|
+
import { GoogleProvider, type GoogleConfig } from 'gencode-ai';
|
|
55
|
+
const provider = new GoogleProvider();
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## ✨ New Features
|
|
61
|
+
|
|
62
|
+
### Context Management (Proposal 0007)
|
|
63
|
+
Manual control over conversation context with new CLI commands:
|
|
64
|
+
|
|
65
|
+
- **`/compact`** - Trigger conversation compaction manually
|
|
66
|
+
- Summarizes older messages to reduce context
|
|
67
|
+
- Shows before/after statistics
|
|
68
|
+
|
|
69
|
+
- **`/context`** - View context usage statistics
|
|
70
|
+
- Active vs total messages
|
|
71
|
+
- Compression status
|
|
72
|
+
- Visual progress indicator
|
|
73
|
+
|
|
74
|
+
### Checkpoint Persistence (Proposal 0008)
|
|
75
|
+
Fixed critical persistence bug:
|
|
76
|
+
|
|
77
|
+
- ✅ Checkpoints saved to disk with sessions
|
|
78
|
+
- ✅ Restored when resuming sessions
|
|
79
|
+
- ✅ Preserved when forking sessions
|
|
80
|
+
- ✅ Session compression works across restarts
|
|
81
|
+
|
|
82
|
+
### Gemini 3+ Thinking Support
|
|
83
|
+
Added support for Gemini 3+ model reasoning:
|
|
84
|
+
|
|
85
|
+
- Captures `thoughtSignature` from Gemini 3+ models
|
|
86
|
+
- Streams reasoning chunks with `type: 'reasoning'`
|
|
87
|
+
- Preserves thinking process in tool calls
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## 🐛 Bug Fixes
|
|
92
|
+
|
|
93
|
+
- Fixed checkpoint data not persisting across session restarts
|
|
94
|
+
- Fixed provider display name for Google in registry
|
|
95
|
+
- Improved error messages for unknown provider IDs
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## 📚 Documentation
|
|
100
|
+
|
|
101
|
+
- Added session compression implementation guide with flowcharts
|
|
102
|
+
- Updated provider documentation for Google rename
|
|
103
|
+
- Added migration guide for breaking changes
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## 🧹 Housekeeping
|
|
108
|
+
|
|
109
|
+
- Removed temporary test scripts and documentation
|
|
110
|
+
- Cleaned up code comments and logging
|
|
111
|
+
- Improved checkpoint serialization logic
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## 📦 Installation
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
# New installation
|
|
119
|
+
npm install -g gencode-ai@0.4.0
|
|
120
|
+
|
|
121
|
+
# Update from v0.3.x
|
|
122
|
+
npm update -g gencode-ai
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## ⚠️ Important Notes
|
|
128
|
+
|
|
129
|
+
- **Breaking changes** - Follow migration guide above
|
|
130
|
+
- **Backup recommended** - Back up `~/.gen/` before upgrading
|
|
131
|
+
- **Config update required** - Use migration script or update manually
|
|
132
|
+
- **SDK users** - Update imports from `GeminiProvider` to `GoogleProvider`
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## 🔗 Links
|
|
137
|
+
|
|
138
|
+
- [Full Changelog](https://github.com/your-repo/gencode/compare/v0.3.0...v0.4.0)
|
|
139
|
+
- [Documentation](https://github.com/your-repo/gencode/docs)
|
|
140
|
+
- [Report Issues](https://github.com/your-repo/gencode/issues)
|
package/dist/agent/agent.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Agent - Core agent implementation with tool loop and session support
|
|
3
3
|
*/
|
|
4
|
-
import type { Message } from '../providers/types.js';
|
|
4
|
+
import type { Message, Provider } from '../providers/types.js';
|
|
5
5
|
import { PermissionManager, type ApprovalAction, type ApprovalSuggestion, type PromptPermission, type PermissionSettings } from '../permissions/index.js';
|
|
6
6
|
import { SessionManager } from '../session/index.js';
|
|
7
7
|
import { MemoryManager, type LoadedMemory } from '../memory/index.js';
|
|
@@ -17,7 +17,6 @@ export declare class Agent {
|
|
|
17
17
|
private memoryManager;
|
|
18
18
|
private planModeManager;
|
|
19
19
|
private config;
|
|
20
|
-
private messages;
|
|
21
20
|
private sessionId;
|
|
22
21
|
private loadedMemory;
|
|
23
22
|
private askUserCallback;
|
|
@@ -106,12 +105,26 @@ export declare class Agent {
|
|
|
106
105
|
getSessionManager(): SessionManager;
|
|
107
106
|
/**
|
|
108
107
|
* Set the model to use (auto-switches provider if needed)
|
|
108
|
+
* @param model Model ID to use
|
|
109
|
+
* @param provider Optional: explicit provider (otherwise inferred from model name)
|
|
110
|
+
* @param authMethod Optional: explicit auth method (otherwise inferred or use current)
|
|
109
111
|
*/
|
|
110
|
-
setModel(model: string): void;
|
|
112
|
+
setModel(model: string, provider?: string, authMethod?: string): void;
|
|
111
113
|
/**
|
|
112
114
|
* Get current model
|
|
113
115
|
*/
|
|
114
116
|
getModel(): string;
|
|
117
|
+
/**
|
|
118
|
+
* Get current provider
|
|
119
|
+
*/
|
|
120
|
+
getProvider(): Provider;
|
|
121
|
+
/**
|
|
122
|
+
* Get model information for compression
|
|
123
|
+
*/
|
|
124
|
+
getModelInfo(): {
|
|
125
|
+
contextWindow: number;
|
|
126
|
+
outputLimit?: number;
|
|
127
|
+
};
|
|
115
128
|
/**
|
|
116
129
|
* List available models from the provider API
|
|
117
130
|
*/
|
|
@@ -150,7 +163,7 @@ export declare class Agent {
|
|
|
150
163
|
/**
|
|
151
164
|
* Run a single query through the agent
|
|
152
165
|
*/
|
|
153
|
-
run(prompt: string): AsyncGenerator<AgentEvent, void, unknown>;
|
|
166
|
+
run(prompt: string, signal?: AbortSignal): AsyncGenerator<AgentEvent, void, unknown>;
|
|
154
167
|
/**
|
|
155
168
|
* Clear conversation history
|
|
156
169
|
*/
|
|
@@ -164,5 +177,14 @@ export declare class Agent {
|
|
|
164
177
|
* Get conversation history
|
|
165
178
|
*/
|
|
166
179
|
getHistory(): Message[];
|
|
180
|
+
/**
|
|
181
|
+
* Get compression statistics
|
|
182
|
+
*/
|
|
183
|
+
getCompressionStats(): {
|
|
184
|
+
totalMessages: number;
|
|
185
|
+
activeMessages: number;
|
|
186
|
+
summaryCount: number;
|
|
187
|
+
compressionRatio: number;
|
|
188
|
+
} | null;
|
|
167
189
|
}
|
|
168
190
|
//# sourceMappingURL=agent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/agent/agent.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAe,OAAO,EAAqB,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/agent/agent.ts"],"names":[],"mappings":"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"}
|