* test: remove hardcoded sleeps, add pytest-timeout
- Replace fixed time.sleep() calls with intelligent polling or WebDriverWait
- Add pytest-timeout dependency and --timeout=30 to prevent hangs
- Fixes test flakiness and improves test suite speed
* feat: add Aider AI tool to Forge's toolkit
- Add Aider tool that calls local Ollama (qwen2.5:14b) for AI coding assist
- Register tool in Forge's code toolkit
- Add functional tests for the Aider tool
* config: add opencode.json with local Ollama provider for sovereign AI
* feat: Timmy fixes and improvements
## Bug Fixes
- Fix read_file path resolution: add ~ expansion, proper relative path handling
- Add repo_root to config.py with auto-detection from .git location
- Fix hardcoded llama3.2 - now dynamic from settings.ollama_model
## Timmy's Requests
- Add communication protocol to AGENTS.md (read context first, explain changes)
- Create DECISIONS.md for architectural decision documentation
- Add reasoning guidance to system prompts (step-by-step, state uncertainty)
- Update tests to reflect correct model name (llama3.1:8b-instruct)
## Testing
- All 177 dashboard tests pass
- All 32 prompt/tool tests pass
* feat: Timmy system introspection, delegation, and session logging
## System Introspection (Sovereign Self-Knowledge)
- Add get_system_info() tool - Timmy can now query his runtime environment
- Add check_ollama_health() - verify Ollama status
- Add get_memory_status() - check memory tier status
- True introspection vs hardcoded prompts
## Path Resolution Fix
- Fix all toolkits to use settings.repo_root consistently
- Now uses Path(settings.repo_root) instead of Path.cwd()
## Inter-Agent Delegation
- Add delegate_task() tool - Timmy can dispatch to Seer, Forge, Echo, etc.
- Add list_swarm_agents() - query available agents
## Session Logging
- Add SessionLogger for comprehensive interaction logging
- Records messages, tool calls, errors, decisions
- Writes to /logs/session_{date}.jsonl
## Tests
- Add tests for introspection tools
- Add tests for delegation tools
- Add tests for session logging
- Add tests for path resolution
- All 18 new tests pass
- All 177 dashboard tests pass
---------
Co-authored-by: Alexander Payne <apayne@MM.local>
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
"""Tests for path resolution in file operations."""
|
|
|
|
import pytest
|
|
from pathlib import Path
|
|
|
|
|
|
def test_resolve_path_expands_tilde():
|
|
"""Path resolution should expand ~ to home directory."""
|
|
from creative.tools.file_ops import _resolve_path
|
|
|
|
result = _resolve_path("~/test")
|
|
|
|
assert result.as_posix().startswith("/Users/")
|
|
|
|
|
|
def test_resolve_path_relative_to_repo():
|
|
"""Relative paths should resolve to repo root."""
|
|
from creative.tools.file_ops import _resolve_path
|
|
|
|
result = _resolve_path("src/config.py")
|
|
|
|
assert "Timmy-time-dashboard" in str(result)
|
|
assert result.name == "config.py"
|
|
|
|
|
|
def test_resolve_path_absolute():
|
|
"""Absolute paths should work as-is."""
|
|
from creative.tools.file_ops import _resolve_path
|
|
|
|
result = _resolve_path("/etc/hosts")
|
|
|
|
assert result.name == "hosts"
|
|
|
|
|
|
def test_resolve_path_with_custom_base():
|
|
"""Custom base_dir should override repo root."""
|
|
from creative.tools.file_ops import _resolve_path
|
|
|
|
result = _resolve_path("test.py", base_dir="/tmp")
|
|
|
|
# Handle macOS /private/tmp vs /tmp
|
|
assert result.name == "test.py"
|
|
assert "tmp" in result.as_posix()
|