codeep 1.0.124 → 1.0.125
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 +66 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -220,6 +220,64 @@ Custom skill example (`~/.codeep/skills/my-workflow.json`):
|
|
|
220
220
|
}
|
|
221
221
|
```
|
|
222
222
|
|
|
223
|
+
### Project Intelligence (`/scan`)
|
|
224
|
+
|
|
225
|
+
Scan your project once and cache deep analysis for faster AI responses:
|
|
226
|
+
|
|
227
|
+
```
|
|
228
|
+
/scan # Full project scan - analyzes structure, dependencies, patterns
|
|
229
|
+
/scan status # Show last scan info (age, file count, project type)
|
|
230
|
+
/scan clear # Clear cached intelligence
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
**What gets analyzed and cached:**
|
|
234
|
+
|
|
235
|
+
| Category | Information |
|
|
236
|
+
|----------|-------------|
|
|
237
|
+
| **Structure** | File count, directory tree, language distribution |
|
|
238
|
+
| **Dependencies** | Runtime & dev dependencies, detected frameworks |
|
|
239
|
+
| **Architecture** | Patterns (MVC, Component-based), main modules, entry points |
|
|
240
|
+
| **Scripts** | Available npm/composer/make scripts |
|
|
241
|
+
| **Conventions** | Indentation style, quotes, semicolons, naming conventions |
|
|
242
|
+
| **Testing** | Test framework, test directory location |
|
|
243
|
+
|
|
244
|
+
**Benefits:**
|
|
245
|
+
- AI understands your project deeply without re-analyzing each time
|
|
246
|
+
- Faster responses - no need to scan files repeatedly
|
|
247
|
+
- Consistent context across sessions
|
|
248
|
+
- Framework-aware suggestions (React, Vue, Express, Django, etc.)
|
|
249
|
+
|
|
250
|
+
**Storage:** `.codeep/intelligence.json` (project-local)
|
|
251
|
+
|
|
252
|
+
**Example output:**
|
|
253
|
+
```
|
|
254
|
+
# Project: my-app
|
|
255
|
+
Type: TypeScript/Node.js
|
|
256
|
+
|
|
257
|
+
## Structure
|
|
258
|
+
- 156 files, 24 directories
|
|
259
|
+
- Languages: TypeScript React (89), TypeScript (45), JSON (12)
|
|
260
|
+
- Main directories: src, components, utils, hooks
|
|
261
|
+
|
|
262
|
+
## Frameworks
|
|
263
|
+
React, Next.js
|
|
264
|
+
|
|
265
|
+
## Architecture
|
|
266
|
+
Patterns: Component-based, File-based routing
|
|
267
|
+
Main modules: src, components, hooks, utils
|
|
268
|
+
|
|
269
|
+
## Available Scripts
|
|
270
|
+
- dev: next dev
|
|
271
|
+
- build: next build
|
|
272
|
+
- test: vitest
|
|
273
|
+
|
|
274
|
+
## Code Conventions
|
|
275
|
+
- Indentation: spaces
|
|
276
|
+
- Quotes: single
|
|
277
|
+
- Semicolons: no
|
|
278
|
+
- Naming: camelCase
|
|
279
|
+
```
|
|
280
|
+
|
|
223
281
|
### Self-Verification
|
|
224
282
|
After making changes, the agent automatically:
|
|
225
283
|
1. Runs **build** to check for compilation errors
|
|
@@ -400,6 +458,14 @@ After installation, `codeep` is available globally in your terminal. Simply run
|
|
|
400
458
|
| `/learn status` | Show learned preferences |
|
|
401
459
|
| `/learn rule <text>` | Add a custom coding rule |
|
|
402
460
|
|
|
461
|
+
### Project Intelligence
|
|
462
|
+
|
|
463
|
+
| Command | Description |
|
|
464
|
+
|---------|-------------|
|
|
465
|
+
| `/scan` | Scan project and cache intelligence for AI |
|
|
466
|
+
| `/scan status` | Show last scan info |
|
|
467
|
+
| `/scan clear` | Clear cached intelligence |
|
|
468
|
+
|
|
403
469
|
### Skills
|
|
404
470
|
|
|
405
471
|
| Command | Description |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.125",
|
|
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",
|