Browse Source

0.1.4

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Colby McHenry 5 months ago
parent
commit
b1c6d672db
2 changed files with 1 additions and 73 deletions
  1. 0 72
      README.md
  2. 1 1
      package.json

+ 0 - 72
README.md

@@ -331,78 +331,6 @@ const syncResult = await cg.sync();
 cg.close();
 ```
 
-## ๐Ÿ› ๏ธ Development
-
-### Running Tests
-
-```bash
-npm test              # Run all tests
-npm run test:watch    # Run tests in watch mode
-```
-
-### Building
-
-```bash
-npm run build         # Compile TypeScript and copy assets
-npm run clean         # Remove build artifacts
-```
-
-### Project Structure
-
-```
-codegraph/
-โ”œโ”€โ”€ src/
-โ”‚   โ”œโ”€โ”€ index.ts              # Main CodeGraph class
-โ”‚   โ”œโ”€โ”€ types.ts              # TypeScript interfaces
-โ”‚   โ”œโ”€โ”€ config.ts             # Configuration handling
-โ”‚   โ”œโ”€โ”€ directory.ts          # .codegraph/ management
-โ”‚   โ”œโ”€โ”€ errors.ts             # Custom error classes
-โ”‚   โ”œโ”€โ”€ utils.ts              # Utilities (Mutex, batching, etc.)
-โ”‚   โ”‚
-โ”‚   โ”œโ”€โ”€ bin/
-โ”‚   โ”‚   โ””โ”€โ”€ codegraph.ts      # CLI entry point
-โ”‚   โ”‚
-โ”‚   โ”œโ”€โ”€ db/
-โ”‚   โ”‚   โ”œโ”€โ”€ index.ts          # Database connection
-โ”‚   โ”‚   โ”œโ”€โ”€ schema.sql        # SQLite schema
-โ”‚   โ”‚   โ”œโ”€โ”€ migrations.ts     # Schema versioning
-โ”‚   โ”‚   โ””โ”€โ”€ queries.ts        # Prepared statements
-โ”‚   โ”‚
-โ”‚   โ”œโ”€โ”€ extraction/
-โ”‚   โ”‚   โ”œโ”€โ”€ index.ts          # Extraction orchestrator
-โ”‚   โ”‚   โ”œโ”€โ”€ tree-sitter.ts    # Parser wrapper
-โ”‚   โ”‚   โ”œโ”€โ”€ grammars.ts       # Grammar loading
-โ”‚   โ”‚   โ””โ”€โ”€ queries/          # Tree-sitter queries (.scm)
-โ”‚   โ”‚
-โ”‚   โ”œโ”€โ”€ resolution/
-โ”‚   โ”‚   โ”œโ”€โ”€ index.ts          # Reference resolver
-โ”‚   โ”‚   โ””โ”€โ”€ frameworks/       # Framework-specific patterns
-โ”‚   โ”‚
-โ”‚   โ”œโ”€โ”€ graph/
-โ”‚   โ”‚   โ”œโ”€โ”€ index.ts          # Graph query interface
-โ”‚   โ”‚   โ”œโ”€โ”€ traversal.ts      # BFS/DFS, impact radius
-โ”‚   โ”‚   โ””โ”€โ”€ queries.ts        # Graph queries
-โ”‚   โ”‚
-โ”‚   โ”œโ”€โ”€ vectors/
-โ”‚   โ”‚   โ”œโ”€โ”€ index.ts          # Vector operations
-โ”‚   โ”‚   โ””โ”€โ”€ search.ts         # Similarity search
-โ”‚   โ”‚
-โ”‚   โ”œโ”€โ”€ sync/
-โ”‚   โ”‚   โ”œโ”€โ”€ index.ts          # Sync orchestrator
-โ”‚   โ”‚   โ””โ”€โ”€ git-hooks.ts      # Hook installation
-โ”‚   โ”‚
-โ”‚   โ”œโ”€โ”€ context/
-โ”‚   โ”‚   โ”œโ”€โ”€ index.ts          # Context builder
-โ”‚   โ”‚   โ””โ”€โ”€ formatter.ts      # Output formatting
-โ”‚   โ”‚
-โ”‚   โ””โ”€โ”€ mcp/
-โ”‚       โ”œโ”€โ”€ index.ts          # MCP server
-โ”‚       โ”œโ”€โ”€ transport.ts      # Stdio transport
-โ”‚       โ””โ”€โ”€ tools.ts          # Tool definitions
-โ”‚
-โ””โ”€โ”€ __tests__/                # Test files
-```
-
 ## โš™๏ธ How It Works
 
 ### 1. Extraction

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "@colbymchenry/codegraph",
-  "version": "0.1.3",
+  "version": "0.1.4",
   "description": "A local-first code intelligence system that builds a semantic knowledge graph from any codebase",
   "main": "dist/index.js",
   "types": "dist/index.d.ts",