/ kamaji.config.yml
kamaji.config.yml
 1  # Kamaji Project Configuration
 2  project:
 3    name: "Kamaji"
 4    version: "1.0.0"
 5    description: "Multi-language AI assistant with TUI interface"
 6    primary_implementation: "go"
 7    primary_agent: "kamaji-agent"
 8  
 9  implementations:
10    go:
11      path: "./go"
12      main: "./go/cmd/kamaji/main.go"
13      binary: "./go/bin/kamaji"
14      test_command: "cd go && go test ./..."
15      build_command: "cd go && make build"
16    
17    rust:
18      path: "./src"
19      main: "./src/main.rs"
20      binary: "./target/release/kamaji"
21      test_command: "cargo test"
22      build_command: "cargo build --release"
23  
24  development:
25    ai_assistant: ".aider.conf.yml"
26    database: ".crush/"
27    docs: "./docs"
28    primary_agent: "kamaji-agent"
29    agent_config: ".amazonq/cli-agents/kamaji-agent.json"
30    
31  build:
32    artifacts:
33      - "target/"
34      - "go/bin/"
35    
36  scripts:
37    location: "./scripts"
38    
39  archive:
40    legacy_python: "./legacy/python"
41    archived_implementations: "./archive"
42    python_cli_final: "./archive/python-cli-final"