pith 0.1.0

Generate optimized codebase context for LLMs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
# CLI Specification

## Overview

```
pith - Generate optimized codebase context for LLMs

USAGE:
    pith <COMMAND> [OPTIONS]

COMMANDS:
    tree       Display file tree with metadata
    codemap    Extract API signatures from source files
    context    Generate full context (tree + codemaps)
    tokens     Count tokens for files
    languages  Show supported languages

OPTIONS:
    -h, --help       Print help
    -V, --version    Print version
```

## Commands

### tree

Display file tree with optional metadata.

```
pith tree [PATH] [OPTIONS]

ARGS:
    <PATH>    Root directory to scan [default: .]

OPTIONS:
    --json              Output as JSON
    --no-metadata       Hide file sizes and line counts
    --include-hidden    Include hidden files and directories
    --max-depth <N>     Maximum directory depth
    -h, --help          Print help
```

**Examples:**

```bash
# Basic tree
pith tree ./project

# JSON output
pith tree ./project --json

# Limited depth
pith tree ./project --max-depth 3

# Include hidden files
pith tree ./project --include-hidden
```

**Output (default):**
```
project/
├── src/
│   ├── lib.rs [rust, 245 lines, 2.3KB]
│   └── main.rs [rust, 89 lines, 1.1KB]
└── Cargo.toml [toml, 25 lines, 512B]
```

**Output (JSON):**
```json
{
  "tree": {
    "name": "project",
    "kind": "directory",
    "children": [...]
  }
}
```

### codemap

Extract API signatures from source files.

```
pith codemap [PATH] [OPTIONS]

ARGS:
    <PATH>    Root directory to scan [default: .]

OPTIONS:
    --json               Output as JSON
    --include-docs       Include doc comments
    --include-private    Include private items (default: public only)
    --lang <LANG>        Filter to specific language(s) [possible values: rust, typescript, tsx, javascript, jsx, python, go]
    -h, --help           Print help
```

**Examples:**

```bash
# All codemaps
pith codemap ./project

# Rust only
pith codemap ./project --lang rust

# Include everything
pith codemap ./project --include-docs --include-private

# JSON for programmatic use
pith codemap ./project --json
```

**Output (default):**
```xml
<codemaps>
## src/lib.rs

### Imports
- use std::collections::HashMap

### Declarations

#### pub struct Config (lines 7-10)
Fields:
- pub name: String
- pub timeout: Duration

#### pub fn process(input: &str) -> Result<Output> (line 15)

</codemaps>
```

### context

Generate full context including tree and codemaps.

```
pith context [PATH] [OPTIONS]

ARGS:
    <PATH>    Root directory to scan [default: .]

OPTIONS:
    --json               Output as JSON
    --include-docs       Include doc comments
    --include-private    Include private items
    --select <GLOB>      Select files for full content inclusion
    --lang <LANG>        Filter to specific language(s)
    -h, --help           Print help
```

**Examples:**

```bash
# Full context
pith context ./project

# With selected files
pith context ./project --select "src/**/*.rs"

# JSON output
pith context ./project --json
```

**Output:**
```xml
<file_map>
project/
├── src/
│   ├── lib.rs [rust, 245 lines, 2.3KB] +
│   └── main.rs [rust, 89 lines, 1.1KB] +
└── Cargo.toml [toml, 25 lines, 512B]

Legend: * = selected, + = has codemap
</file_map>

<codemaps>
...
</codemaps>

<token_summary>
Total: 1,456 tokens
</token_summary>
```

### tokens

Count tokens for files.

```
pith tokens [PATH] [OPTIONS]

ARGS:
    <PATH>    Root directory or file to count [default: .]

OPTIONS:
    --json               Output as JSON
    --encoding <ENC>     Token encoding [default: cl100k] [possible values: cl100k, o200k]
    --per-file           Show per-file breakdown
    -h, --help           Print help
```

**Examples:**

```bash
# Total tokens
pith tokens ./project

# Per-file breakdown
pith tokens ./project --per-file

# Different encoding
pith tokens ./project --encoding o200k

# JSON output
pith tokens ./project --json --per-file
```

**Output (default):**
```
Total tokens: 12,345
```

**Output (per-file):**
```
src/lib.rs: 2,345 tokens
src/main.rs: 1,234 tokens
src/utils/helpers.rs: 567 tokens
Total: 4,146 tokens
```

**Output (JSON):**
```json
{
  "total": 4146,
  "files": {
    "src/lib.rs": 2345,
    "src/main.rs": 1234,
    "src/utils/helpers.rs": 567
  }
}
```

### languages

Show supported languages and their extensions.

```
pith languages [OPTIONS]

OPTIONS:
    --json    Output as JSON
    -h, --help    Print help
```

**Output (default):**
```
Supported languages:
  rust        .rs
  typescript  .ts
  tsx         .tsx
  javascript  .js, .mjs, .cjs
  jsx         .jsx
  python      .py, .pyi
  go          .go
```

**Output (JSON):**
```json
{
  "languages": [
    { "name": "rust", "extensions": [".rs"] },
    { "name": "typescript", "extensions": [".ts"] },
    { "name": "tsx", "extensions": [".tsx"] },
    { "name": "javascript", "extensions": [".js", ".mjs", ".cjs"] },
    { "name": "jsx", "extensions": [".jsx"] },
    { "name": "python", "extensions": [".py", ".pyi"] },
    { "name": "go", "extensions": [".go"] }
  ]
}
```

## Global Options

These options apply to all commands:

| Flag | Description |
|------|-------------|
| `-h, --help` | Print help information |
| `-V, --version` | Print version information |
| `--json` | Output as JSON (available on most commands) |

## Exit Codes

| Code | Meaning |
|------|---------|
| 0 | Success |
| 1 | General error |
| 2 | Invalid arguments |
| 3 | Path not found |
| 4 | Permission denied |
| 5 | No supported files found |

## Piping and Redirection

Primary use case is stdout piping to LLMs:

```bash
# Pipe to LLM CLI
pith context ./project | llm "Analyze this codebase"

# Save to file
pith context ./project > context.txt

# Combine with other tools
pith codemap ./project --json | jq '.codemaps[].path'
```

## Glob Patterns

The `--select` flag accepts glob patterns:

| Pattern | Matches |
|---------|---------|
| `*.rs` | All .rs files in root |
| `**/*.rs` | All .rs files recursively |
| `src/**/*.rs` | All .rs files under src/ |
| `src/*.{rs,ts}` | .rs and .ts files in src/ |
| `!**/test_*.rs` | Exclude test files |

## Implementation with clap

```rust
use clap::{Parser, Subcommand};

#[derive(Parser)]
#[command(name = "pith")]
#[command(about = "Generate optimized codebase context for LLMs")]
#[command(version)]
struct Cli {
    #[command(subcommand)]
    command: Commands,
}

#[derive(Subcommand)]
enum Commands {
    /// Display file tree with metadata
    Tree {
        /// Root directory to scan
        #[arg(default_value = ".")]
        path: PathBuf,

        /// Output as JSON
        #[arg(long)]
        json: bool,

        /// Hide file sizes and line counts
        #[arg(long)]
        no_metadata: bool,

        /// Include hidden files and directories
        #[arg(long)]
        include_hidden: bool,

        /// Maximum directory depth
        #[arg(long)]
        max_depth: Option<usize>,
    },

    /// Extract API signatures from source files
    Codemap {
        /// Root directory to scan
        #[arg(default_value = ".")]
        path: PathBuf,

        /// Output as JSON
        #[arg(long)]
        json: bool,

        /// Include doc comments
        #[arg(long)]
        include_docs: bool,

        /// Include private items
        #[arg(long)]
        include_private: bool,

        /// Filter to specific language(s)
        #[arg(long, value_delimiter = ',')]
        lang: Vec<Language>,
    },

    /// Generate full context (tree + codemaps)
    Context {
        /// Root directory to scan
        #[arg(default_value = ".")]
        path: PathBuf,

        /// Output as JSON
        #[arg(long)]
        json: bool,

        /// Include doc comments
        #[arg(long)]
        include_docs: bool,

        /// Include private items
        #[arg(long)]
        include_private: bool,

        /// Select files for full content inclusion
        #[arg(long)]
        select: Vec<String>,

        /// Filter to specific language(s)
        #[arg(long, value_delimiter = ',')]
        lang: Vec<Language>,
    },

    /// Count tokens for files
    Tokens {
        /// Root directory or file to count
        #[arg(default_value = ".")]
        path: PathBuf,

        /// Output as JSON
        #[arg(long)]
        json: bool,

        /// Token encoding
        #[arg(long, default_value = "cl100k")]
        encoding: Encoding,

        /// Show per-file breakdown
        #[arg(long)]
        per_file: bool,
    },

    /// Show supported languages
    Languages {
        /// Output as JSON
        #[arg(long)]
        json: bool,
    },
}
```

## Error Output

Errors go to stderr, allowing stdout to be piped:

```bash
pith codemap ./nonexistent 2>/dev/null | llm "..."
```

Error format:
```
error: path not found: ./nonexistent
```

With `--json`, errors are also JSON:
```json
{ "error": "path not found: ./nonexistent" }
```

## Shell Completion

Generate shell completions:

```bash
# Bash
pith --generate-completion bash > /etc/bash_completion.d/pith

# Zsh
pith --generate-completion zsh > ~/.zfunc/_pith

# Fish
pith --generate-completion fish > ~/.config/fish/completions/pith.fish
```

## Examples

### Quick Codebase Overview

```bash
pith tree . --no-metadata
```

### Get API Surface

```bash
pith codemap . --lang rust,typescript
```

### Full Context for LLM

```bash
pith context . | pbcopy  # macOS
pith context . | xclip   # Linux
```

### Token Budget Check

```bash
pith tokens . --per-file | sort -t: -k2 -n -r | head -10
```

### JSON Processing

```bash
# Get all function names
pith codemap . --json | jq '.codemaps[].declarations[] | select(.kind == "function") | .name'

# Count declarations per file
pith codemap . --json | jq '.codemaps | map({path: .path, count: (.declarations | length)})'
```