docs(skill): document clean-git requirement and /tmp filter gotchas#61
Merged
christophergeyer merged 1 commit intomainfrom Apr 17, 2026
Merged
docs(skill): document clean-git requirement and /tmp filter gotchas#61christophergeyer merged 1 commit intomainfrom
christophergeyer merged 1 commit intomainfrom
Conversation
Two gotchas discovered while exercising `roar run` end-to-end: 1. `roar run` refuses to execute with any uncommitted git changes (including untracked files) and has no `--dirty` bypass. Agents hitting this need to commit, stash, or gitignore first — and especially need to make sure `.roar/` is in `.gitignore` before the first run, or it becomes an untracked change that blocks subsequent runs. 2. The default `config.toml` sets `ignore_tmp_files = true`, which silently drops any I/O under `/tmp`. A run in a /tmp workdir produces no Inputs/Outputs and `in:0 out:0` in `roar dag`, with no indication the filter is responsible. Added both to the Claude skill's Gotchas section and a condensed version to the cross-agent AGENTS.md snippet. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
TrevorBasinger
approved these changes
Apr 16, 2026
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 free
to 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
Two gotchas discovered while exercising
roar runend-to-end:Clean git state is required.
roar runrefuses to execute with any uncommitted changes (including untracked files). There's no--dirtybypass. Agents especially need to make sure.roar/is in.gitignorebefore the first run — otherwise the directory becomes an untracked change that blocks every subsequent run.The default config filters
/tmp.ignore_tmp_files = truein the generatedconfig.tomlsilently drops all I/O under/tmp. A run in a/tmpworkdir showsin:0 out:0inroar dagand noInputs/Outputssections inroar show, with no indication the filter is responsible.Added both to the Claude skill's Gotchas section and condensed versions to the cross-agent AGENTS.md snippet.
Test plan
test_init_agents.pytests still pass (template rendering is content-agnostic)roar init agentson a project with existing AGENTS.md → verify the block refreshes to include the new bullets🤖 Generated with Claude Code