get_project_info
Look up a project by its UUID4 to retrieve its name, build system type, root path, and timestamps. Performs a read-only query on the global project registry.
Instructions
Return project metadata (name, type, root_path) for a project ID.
Looks up the global project registry at ~/.fw-context/projects.db.
Use this to identify a project from its UUID4 — find out what build
system it uses, its name, and where it was last indexed.
Read-only. No side effects.
Args: project_id: Project ID (UUID4 hex) to look up.
Returns: dict: {project_id, name, project_type, root_path, created_at, updated_at} or {"error": "..."} when the project_id is not registered.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Project ID (UUID4 hex) to look up. |