From lattice
Show detailed information about a specific project, including git state, latest checkpoint, and session history.
How this command is triggered — by the user, by Claude, or both
Slash command
/lattice:projectThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Lattice Project Show detailed information about a specific project, including git state, latest checkpoint, and session history. ## Arguments - `<name>` — Project name or ID to look up. Searches display_name, canonical_name, and ID. ## Instructions 1. Source the Lattice config: 2. Build the auth args (omit the header when no token is set, mirroring `hooks/scripts/lib/common.sh`): 3. Fetch all projects to find the matching one: 4. Find the project matching the `<name>` argument (case-insensitive partial match on display_name, canonical_name, or id). 5. Fetch the project detail:...
Show detailed information about a specific project, including git state, latest checkpoint, and session history.
<name> — Project name or ID to look up. Searches display_name, canonical_name, and ID.source ~/.config/lattice/config.env
hooks/scripts/lib/common.sh):[ -n "$LATTICE_API_TOKEN" ] && AUTH_ARGS=(-H "Authorization: Bearer $LATTICE_API_TOKEN") || AUTH_ARGS=()
curl -s "${AUTH_ARGS[@]}" "${LATTICE_API_URL}/api/projects"
Find the project matching the <name> argument (case-insensitive partial match on display_name, canonical_name, or id).
Fetch the project detail:
curl -s "${AUTH_ARGS[@]}" "${LATTICE_API_URL}/api/projects/<project_id>"
curl -s "${AUTH_ARGS[@]}" "${LATTICE_API_URL}/api/projects/<project_id>/sessions?limit=5"
npx claudepluginhub bookchiq/lattice-tracker --plugin lattice/projectDisplays project dashboard with status, progress, milestones, and tasks. Also creates new projects by analyzing PRD into milestones and tasks.
/projectManages large multi-session projects: create new, check status, add/complete milestones, generate summaries, launch interactive manager via subcommands.
/projectInitializes, analyzes, or registers a project in the LTM context system. Seeds goals, retrieves relevant memories, and maps directories to project names.
/projectAutonomously analyzes the current project: detects type and technologies, loads skills, runs code analysis, generates quality report with concise terminal output and detailed file.
/projectManages project boards: shows active project info and task overview, creates new boards with .kanban/ init, lists all projects, switches active project.
/projectManages project context: detects frameworks/package managers/agents/tests/env/cache, shows detailed status. Supports subcommands like status, refresh, init, switch, list, config.