Skip to content
Open
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
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
node_modules

# Next.js build output and local test artifacts
web/.next/
web/test-results/
web/tsconfig.tsbuildinfo

# Python caches and local environments
__pycache__/
*.py[cod]
.venv/
venv/

# Local backend runtime state
backend/data/orchestration-artifacts/
backend/data/orchestration-history.jsonl

# Promptfoo local install state
promptfoo/node_modules/
14 changes: 14 additions & 0 deletions .vscode/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"servers": {
"agclaw-source-explorer": {
"type": "stdio",
"command": "node",
"args": [
"D:/OneDrive - AG SOLUTION/claude-code/mcp-server/dist/src/index.js"
],
"env": {
"AGCLAW_REFERENCE_SRC_ROOT": "D:/OneDrive - AG SOLUTION/claude-code/src"
}
}
}
}
Loading