forked from Rockachopa/Timmy-time-dashboard
* Remove persona system, identity, and all Timmy references
Strip the codebase to pure orchestration logic:
- Delete TIMMY_IDENTITY.md and memory/self/identity.md
- Gut brain/identity.py to no-op stubs (empty returns)
- Remove all system prompts reinforcing Timmy's character, faith,
sovereignty, sign-off ("Sir, affirmative"), and agent roster
- Replace identity-laden prompts with generic local-AI-assistant prompts
- Remove "You work for Timmy" from all sub-agent system prompts
- Rename PersonaTools → AgentTools, PERSONA_TOOLKITS → AGENT_TOOLKITS
- Replace "timmy" agent ID with "orchestrator" across routes, marketplace,
tools catalog, and orchestrator class
- Strip Timmy references from config comments, templates, telegram bot,
chat API, and dashboard UI
- Delete tests/brain/test_identity.py entirely
- Fix all test assertions that checked for persona identity content
729 tests pass (2 pre-existing failures in test_calm.py unrelated).
https://claude.ai/code/session_01LjQGUE6nk9W9674zaxrYxy
* Add Taskosaur (PM + AI task execution) to docker-compose
Spins up Taskosaur alongside the dashboard on `docker compose up`:
- postgres:16-alpine (port 5432, Taskosaur DB)
- redis:7-alpine (Bull queue backend)
- taskosaur (ports 3000 API / 3001 UI)
- dashboard now depends_on taskosaur healthy
- TASKOSAUR_API_URL injected into dashboard environment
Dashboard can reach Taskosaur at http://taskosaur:3000/api on the
internal network. Frontend UI accessible at http://localhost:3001.
https://claude.ai/code/session_01LjQGUE6nk9W9674zaxrYxy
---------
Co-authored-by: Claude <noreply@anthropic.com>
36 lines
857 B
Python
36 lines
857 B
Python
"""Identity loader — stripped.
|
|
|
|
The persona/identity system has been removed. These functions remain
|
|
as no-op stubs so that call-sites don't break at import time.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Optional
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def get_canonical_identity(force_refresh: bool = False) -> str:
|
|
"""Return empty string — identity system removed."""
|
|
return ""
|
|
|
|
|
|
def get_identity_section(section_name: str) -> str:
|
|
"""Return empty string — identity system removed."""
|
|
return ""
|
|
|
|
|
|
def get_identity_for_prompt(include_sections: Optional[list[str]] = None) -> str:
|
|
"""Return empty string — identity system removed."""
|
|
return ""
|
|
|
|
|
|
def get_agent_roster() -> list[dict[str, str]]:
|
|
"""Return empty list — identity system removed."""
|
|
return []
|
|
|
|
|
|
_FALLBACK_IDENTITY = ""
|