Skip to content

Commit bcce71c

Browse files
authored
Merge pull request #328 from neongreen/copilot/remove-claude-trace
Remove claude-trace project
2 parents fce847e + 6a8433b commit bcce71c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+15
-5222
lines changed

.dagger/project_claudetrace.go

Lines changed: 0 additions & 34 deletions
This file was deleted.

.dagger/project_namespace.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ func (p *Projects) Prrun() *PrrunProject {
4545
return &PrrunProject{Dagger: p.Dagger}
4646
}
4747

48-
// ClaudeTrace returns the claude-trace project
49-
func (p *Projects) ClaudeTrace() *ClaudeTraceProject {
50-
return &ClaudeTraceProject{Dagger: p.Dagger}
51-
}
52-
5348
// MarkdownFormat returns the markdown-format project
5449
func (p *Projects) MarkdownFormat() *MarkdownFormatProject {
5550
return &MarkdownFormatProject{Dagger: p.Dagger}

.dagger/runbuild.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ func (m *Dagger) Build(ctx context.Context) error {
2525
addBuild("build ingest", p.Ingest().Build)
2626
addBuild("build printpdf", p.Printpdf().Build)
2727
addBuild("build prrun", p.Prrun().Build)
28-
addBuild("build claude-trace", p.ClaudeTrace().Build)
2928
addBuild("build markdown-format", p.MarkdownFormat().Build)
3029
addBuild("build jj-run", p.JjRun().Build)
3130

.dagger/runtest.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ func (m *Dagger) Test(ctx context.Context,
3232
addTest("test ingest", p.Ingest().Test)
3333
addTest("test printpdf", p.Printpdf().Test)
3434
addTest("test prrun", p.Prrun().Test)
35-
addTest("test claude-trace", p.ClaudeTrace().Test)
3635
addTest("test markdown-format", p.MarkdownFormat().Test)
3736
addTest("test jj-run", p.JjRun().Test)
3837
addTest("test lib/cli", p.LibCli().Test)

.golangci-baseline.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ As of commit `0c23a5a5`, the following violations are allowed:
3838
**G305 - File Traversal (2):**
3939
- printpdf zip extraction (development tool)
4040

41-
**G114 - HTTP Timeout (1):**
42-
- claude-trace local server (development tool)
43-
4441
**G115 - Integer Overflow (1):**
4542
- printpdf type conversion (edge case)
4643

AGENTS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,6 @@ All Go CLI tools in this monorepo have version subcommands:
313313
- dissect
314314
- ingest
315315
- printpdf
316-
- claude-trace
317316
- jj-run
318317

319318
------------------------------------------------------------

GO_STYLE_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ project/
215215
```
216216

217217
**Pattern used in all projects:**
218-
- `tk/main.go`, `want/main.go`, `conf/main.go`, `dissect/main.go`, `ingest/main.go`, `claude-trace/main.go`, `printpdf/main.go`, `prrun/main.go`, `markdown-format/main.go`, `jj-run/main.go`
218+
- `tk/main.go`, `want/main.go`, `conf/main.go`, `dissect/main.go`, `ingest/main.go`, `printpdf/main.go`, `prrun/main.go`, `markdown-format/main.go`, `jj-run/main.go`
219219

220220
**cmd/ subdirectory (optional):**
221221
- For projects using Cobra, the `cmd/` subdirectory may contain command implementation files (e.g., `tk/cmd/root.go`, `conf/cmd/jj.go`)

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ This repository contains multiple independent projects.
1515
| [diagram-dsl](diagram-dsl/) | pre-alpha | TypeScript DSL for diagrams; layout system under active refactor. |
1616
| [mdbook-comments](mdbook-comments/) | alpha | mdbook preprocessor for paragraph-level commenting with Supabase backend. |
1717
| [want](want/) | alpha | Planning/fulfilment assistant; core design still in flux. |
18-
| [claude-trace](claude-trace/) | pre-alpha | TUI for reviewing Claude Code conversations; storage format being stabilized. |
1918
| [conf](conf/) | alpha | Smart configuration manager; command coverage incomplete. |
2019
| [tk](tk/) | beta | System-wide event-sourced task tracker; v0 implements basic claims and authority lattice. |
2120
| [jj-run](jj-run/) | alpha | Jujutsu subcommand to execute shell commands against multiple revisions. |
@@ -91,7 +90,7 @@ Go projects in this repository are automatically released:
9190

9291
Main channel releases are considered unstable snapshots unless explicitly tagged. Stable channels are being defined (see bd-313).
9392

94-
Homebrew formulas for the Go CLIs (`ingest`, `want`, `printpdf`, `conf`, `dissect`, `markdown-format`, `prrun`, `claude-trace`, `tk`) are published to [neongreen/homebrew-mono](https://github.com/neongreen/homebrew-mono). Tap it with `brew tap neongreen/mono` and install what you need:
93+
Homebrew formulas for the Go CLIs (`ingest`, `want`, `printpdf`, `conf`, `dissect`, `markdown-format`, `prrun`, `tk`) are published to [neongreen/homebrew-mono](https://github.com/neongreen/homebrew-mono). Tap it with `brew tap neongreen/mono` and install what you need:
9594

9695
```bash
9796
brew tap neongreen/mono
@@ -102,7 +101,6 @@ brew install conf
102101
brew install dissect
103102
brew install markdown-format
104103
brew install prrun
105-
brew install claude-trace
106104
brew install tk
107105
```
108106

claude-trace/.gitignore

Lines changed: 0 additions & 26 deletions
This file was deleted.

claude-trace/AGENTS.md

Lines changed: 0 additions & 72 deletions
This file was deleted.

0 commit comments

Comments
 (0)