| @@ -1,7 +1,7 @@ | ||
| blank_issues_enabled: false | ||
| contact_links: | ||
| - name: Security report | ||
| - | url: https://github.com/Tree-Trace/treetrace/security/advisories/new | |
| + | url: https://github.com/TreeTraceTool/TreeTrace/security/advisories/new | |
| about: Report a vulnerability privately instead of opening a public issue. | ||
| - name: Website | ||
| url: https://treetrace.dev |
| @@ -2,6 +2,12 @@ | ||
| Notable changes to TreeTrace. The format follows Keep a Changelog, and the project uses semantic versioning. | ||
| + | ## 0.5.1 - 2026-06-15 | |
| + | ||
| + | ### Fixed | |
| + | ||
| + | - Package metadata, README, and config links now point to github.com/TreeTraceTool/TreeTrace. | |
| + | ||
| ## 0.5.0 - 2026-06-13 | ||
| ### Added |
| @@ -12,7 +12,7 @@ Thanks for looking. TreeTrace is a small, local-first CLI with no runtime depend | ||
| ## Getting set up | ||
| ```bash | ||
| - | git clone https://github.com/Tree-Trace/treetrace.git | |
| + | git clone https://github.com/TreeTraceTool/TreeTrace.git | |
| cd treetrace | ||
| npm test | ||
| ``` |
| @@ -1,8 +1,8 @@ | ||
| <div align="center"> | ||
| <picture> | ||
| - | <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/Tree-Trace/treetrace/main/.github/assets/logo-dark.svg"> | |
| - | <img alt="TreeTrace" src="https://raw.githubusercontent.com/Tree-Trace/treetrace/main/.github/assets/logo-light.svg" width="440"> | |
| + | <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/TreeTraceTool/TreeTrace/main/.github/assets/logo-dark.svg"> | |
| + | <img alt="TreeTrace" src="https://raw.githubusercontent.com/TreeTraceTool/TreeTrace/main/.github/assets/logo-light.svg" width="440"> | |
| </picture> | ||
| <h3>Git shows what changed. TreeTrace shows how you steered the agent.</h3> | ||
| @@ -11,7 +11,7 @@ | ||
| <p> | ||
| <a href="https://www.npmjs.com/package/treetrace"><img alt="npm" src="https://img.shields.io/npm/v/treetrace?style=flat-square&label=npm&color=0CA08A&labelColor=0B1210"></a> | ||
| - | <a href="https://github.com/Tree-Trace/treetrace/actions/workflows/ci.yml"><img alt="ci" src="https://img.shields.io/github/actions/workflow/status/Tree-Trace/treetrace/ci.yml?branch=main&style=flat-square&label=ci&color=0CA08A&labelColor=0B1210"></a> | |
| + | <a href="https://github.com/TreeTraceTool/TreeTrace/actions/workflows/ci.yml"><img alt="ci" src="https://img.shields.io/github/actions/workflow/status/TreeTraceTool/TreeTrace/ci.yml?branch=main&style=flat-square&label=ci&color=0CA08A&labelColor=0B1210"></a> | |
| <a href="LICENSE"><img alt="license" src="https://img.shields.io/badge/license-Apache--2.0-0CA08A?style=flat-square&labelColor=0B1210"></a> | ||
| <img alt="node" src="https://img.shields.io/badge/node-%E2%89%A518-0CA08A?style=flat-square&labelColor=0B1210"> | ||
| <img alt="dependencies" src="https://img.shields.io/badge/dependencies-0-0CA08A?style=flat-square&labelColor=0B1210"> | ||
| @@ -29,7 +29,7 @@ | ||
| </p> | ||
| <picture> | ||
| - | <img alt="TreeTrace turning a session into a prompt tree, lessons, and redacted output" src="https://raw.githubusercontent.com/Tree-Trace/treetrace/main/.github/assets/demo.gif" width="760"> | |
| + | <img alt="TreeTrace turning a session into a prompt tree, lessons, and redacted output" src="https://raw.githubusercontent.com/TreeTraceTool/TreeTrace/main/.github/assets/demo.gif" width="760"> | |
| </picture> | ||
| </div> |
| @@ -6,7 +6,7 @@ TreeTrace runs locally and never uploads your data, so most of its security surf | ||
| Use GitHub's private vulnerability reporting for this repository: | ||
| - | https://github.com/Tree-Trace/treetrace/security/advisories/new | |
| + | https://github.com/TreeTraceTool/TreeTrace/security/advisories/new | |
| That keeps the report private until a fix is out. Please include the version, your platform and Node version, and a minimal way to reproduce. If a secret would slip through the redaction gate, describe the token shape rather than pasting a real secret. | ||
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "treetrace", | ||
| - | "version": "0.5.0", | |
| + | "version": "0.5.1", | |
| "description": "Capture the agent corrections you throw away as local eval data: regression tests, failure analysis, and handoff memory. No LLM judge, no uploads.", | ||
| "keywords": [ | ||
| "claude-code", | ||
| @@ -20,10 +20,10 @@ | ||
| "homepage": "https://treetrace.dev", | ||
| "repository": { | ||
| "type": "git", | ||
| - | "url": "git+https://github.com/Tree-Trace/treetrace.git" | |
| + | "url": "git+https://github.com/TreeTraceTool/TreeTrace.git" | |
| }, | ||
| "bugs": { | ||
| - | "url": "https://github.com/Tree-Trace/treetrace/issues" | |
| + | "url": "https://github.com/TreeTraceTool/TreeTrace/issues" | |
| }, | ||
| "type": "module", | ||
| "bin": { |
| @@ -1,2 +1,2 @@ | ||
| export const REPO_URL = | ||
| - | process.env.TREETRACE_REPO_URL || 'https://github.com/Tree-Trace/treetrace'; | |
| + | process.env.TREETRACE_REPO_URL || 'https://github.com/TreeTraceTool/TreeTrace'; |