This commit is contained in:
2026-06-10 11:07:17 +08:00
commit 52a2be755f
52 changed files with 54 additions and 0 deletions

54
.gitignore vendored Normal file
View File

@@ -0,0 +1,54 @@
# Python bytecode/cache
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
venv/
.venv/
env/
ENV/
# Test/type/lint/cache artifacts
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
coverage.xml
htmlcov/
# Runtime logs
*.log
logs/*
!logs/.gitkeep
# Generated runtime output
output/
data/guidance/
# Local source/input files and upload fixtures
origin/
# Local secrets/config
.env
.env.*
!.env.example
# Frontend dependencies/build output
node_modules/
dist/
build/
.next/
.vite/
# IDE and OS files
.idea/
.vscode/
.DS_Store
Thumbs.db
# Office/editor temporary files
~$*
*.tmp
*.swp
*.swo

BIN
AGENTS.md Normal file

Binary file not shown.

BIN
CLAUDE.md Normal file

Binary file not shown.

BIN
app/__init__.py Normal file

Binary file not shown.

BIN
app/routes/__init__.py Normal file

Binary file not shown.

BIN
app/routes/domain.py Normal file

Binary file not shown.

BIN
app/routes/guidance.py Normal file

Binary file not shown.

BIN
app/routes/health.py Normal file

Binary file not shown.

BIN
app/routes/rules.py Normal file

Binary file not shown.

BIN
app/routes/schema.py Normal file

Binary file not shown.

BIN
app/rules/__init__.py Normal file

Binary file not shown.

BIN
app/utils/__init__.py Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
app/utils/llm.py Normal file

Binary file not shown.

BIN
app/utils/logger.py Normal file

Binary file not shown.

BIN
app/utils/note_scope.py Normal file

Binary file not shown.

BIN
app/utils/parser.py Normal file

Binary file not shown.

BIN
app/utils/response.py Normal file

Binary file not shown.

Binary file not shown.

BIN
app/utils/schema_storage.py Normal file

Binary file not shown.

BIN
app/utils/storage.py Normal file

Binary file not shown.

BIN
config/__init__.py Normal file

Binary file not shown.

BIN
data/domains.json Normal file

Binary file not shown.

BIN
data/schema.json Normal file

Binary file not shown.

0
logs/.gitkeep Normal file
View File

BIN
requirements.txt Normal file

Binary file not shown.

BIN
run.py Normal file

Binary file not shown.

0
scratchpad.md Normal file
View File

BIN
skill/registry.json Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
tests/conftest.py Normal file

Binary file not shown.

BIN
tests/test_domain_routes.py Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
tests/test_llm.py Normal file

Binary file not shown.

BIN
tests/test_note_scope.py Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.