Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ node_modules/
ui/dist/
demo/out/
evals/cases-harvested/
.ua/.trash-*/
66 changes: 66 additions & 0 deletions .ua/.understandignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# .understandignore — patterns for files/dirs to exclude from analysis
# Syntax: same as .gitignore (globs, # comments, ! negation, trailing / for dirs)
# Lines below are suggestions — uncomment to activate.
# Use ! prefix to force-include something excluded by defaults.
#
# Built-in defaults (always excluded unless negated):
# node_modules/, .git/, dist/, build/, obj/, *.lock, *.min.js, etc.
#

# --- From .gitignore (uncomment to exclude) ---

# Live runtime data, not source: observations/suggestions NDJSON, receipts,
# prompts. CLAUDE.md forbids writing this dir; it is also pure noise for a
# structural graph.
.codecouncil/
# This tool's own output directory — do not analyze ourselves.
.ua/
*.pyc
.DS_Store
.claude/settings.json
.superpowers/
ui/dist/
demo/out/
# Machine-generated eval cases harvested from real grades — regenerated data,
# not authored source.
evals/cases-harvested/

# --- Detected directories (kept on purpose) ---

# docs/ — kept: PROJECT_GUIDE.md + docs/benchmarks/ are primary narrative.
# tests/ — kept: one test file per concern; yields tested_by coverage edges.

# --- Test file patterns (uncomment to exclude) ---

# JS / TS
# *.test.*
# *.spec.*
# *.snap
# C# / .NET
# **/*Tests.cs
# **/*Test.cs
# **/*Fixture.cs
# **/*.Tests.csproj
# Java / Kotlin
# **/src/test/**
# **/*Test.java
# **/*IT.java
# **/*Spec.kt
# Go
# **/*_test.go
# C++
# **/*_test.cc
# **/*_test.cpp
# **/*_test.cxx
# **/*Test.cc
# **/*Test.cpp
# **/*_unittest.cc
# **/*_unittest.cpp
# **/*_browsertest.cc
# **/*_benchmark.cc
# **/*Benchmark.cpp
# Python
# **/test_*.py
# **/*_test.py
# **/tests.py
# **/conftest.py
Loading
Loading