feat: initialize agent and claude skill libraries with comprehensive knowledge bases, workflow templates, and implementation artifacts.

This commit is contained in:
Vonic 2026-04-13 09:49:58 +07:00
parent 956d8c6322
commit b35b4337bb
2028 changed files with 565614 additions and 0 deletions

26
.claude/launch.json Normal file
View file

@ -0,0 +1,26 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "SurfSense Frontend",
"runtimeExecutable": "bun",
"runtimeArgs": ["dev"],
"cwd": "surfsense_web",
"port": 3000
},
{
"name": "SurfSense Backend",
"runtimeExecutable": ".venv/bin/uvicorn",
"runtimeArgs": ["app.app:app", "--host", "0.0.0.0", "--port", "8000", "--reload"],
"cwd": "surfsense_backend",
"port": 8000
},
{
"name": "SurfSense Full Stack (Docker Dev)",
"runtimeExecutable": "docker",
"runtimeArgs": ["compose", "-f", "docker/docker-compose.dev.yml", "up", "--build"],
"cwd": ".",
"port": 3000
}
]
}