Uh oh!
There was an error while loading. Please reload this page.
fix: decouple planexe-outputs from git repo - #230
Merged
neoneye merged 3 commits intoMar 9, 2026
Conversation
- Add planexe-outputs/ to .gitignore to prevent accidental data loss - Make output directory configurable via PLANEXE_OUTPUTS_DIR env var - Default to 'run' directory for backward compatibility - Prevents git reset from destroying pipeline output directories
Uh oh!
There was an error while loading. Please reload this page.
neoneye added a commit
that referenced
this pull request
Mar 9, 2026
* main: fix: correct PLANEXE_OUTPUTS_DIR docs - accurate incident description fix: address PR #230 review - add docs, remove gitignore change fix: decouple planexe-outputs from git repo docs: explain why ThinkingAwareOpenAILike exists vs LMStudio class docs: Add thinking tokens section to LM Studio provider guide Add ThinkingAwareOpenAILike class for LM Studio thinking token handling docs(proposal-103): extend with llama_index silent truncation findings from local model runs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR decouples the planexe-outputs directory from git version control to prevent accidental data loss from git reset operations.
Changes
planexe-outputs/to .gitignore to prevent trackingPLANEXE_OUTPUTS_DIRenvironment variablerundirectory for backward compatibilityMotivation
This change prevents incidents where a git reset --hard could destroy live pipeline output directories. The planexe-outputs directory contains transient run data that should never be committed to git.
Testing