Skip to content
Closed
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
- name: Build skill
run: pnpm --filter @understand-anything/skill build

- name: Check knowledge graph
run: node scripts/check-graph.mjs

- name: Test core
run: pnpm --filter @understand-anything/core test

Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
node_modules
dist
.understand-anything
.understand-anything/intermediate/
.understand-anything/diff-overlay.json
.understand-anything/tmp/
.understand-anything/.trash-*/
*.tsbuildinfo
.DS_Store
.env
Expand Down
48 changes: 48 additions & 0 deletions .understand-anything/.understandignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# .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) ---

# .understand-anything
# *.tsbuildinfo
# .DS_Store
# .env
# .env.*
# .claude/
# .worktrees/
# homepage/public/demo/
# .private/
# *.pyc
# *.pyo
# Thumbs.db

# --- Detected directories (uncomment to exclude) ---

# docs/
# scripts/
# tests/

# --- 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
4 changes: 4 additions & 0 deletions .understand-anything/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"autoUpdate": true,
"outputLanguage": "en"
}
Loading
Loading