Get project memory summary
get_project_summaryRetrieve a concise summary of the project's architecture, key decisions, and conventions to provide project-level context.
Instructions
Return the concise summary for the current project (architecture, key decisions, conventions). USE WHEN: the request depends on project-level context — architecture, conventions, long-term decisions, or project overview. DO NOT USE WHEN: the request is about the current task's state, global preferences, or is self-contained. CALL ORDER: prefer this before search_memory_light. Pass workspace_path OR git_root OR remote_url OR project_id so the server can identify the project. RETURNS: { project_id, found, summary? } where summary has { id, title, summary, updated_at }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| git_root | No | Absolute path to the git repository root | |
| project_id | No | Explicit project id (skip auto-resolution when known) | |
| remote_url | No | Git remote URL, e.g. https://github.com/org/repo | |
| workspace_path | No | Absolute path to the workspace root, e.g. /Users/me/code/app |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| found | Yes | ||
| summary | Yes | ||
| project_id | Yes |