All tools
ToolRead
Plan Project organization
plan_project_organizationYou need matching folders, sources, notes, recent changes, or library metadata.
When to use it
You need matching folders, sources, notes, recent changes, or library metadata.
Typical workflow
Find candidate library objects before reading full evidence.
What it returns
Metadata lists, ids, snippets, activity, and discovery hints.
Avoid using it when
You need exact quoted evidence from a long source; use chunk tools instead.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Produce a bounded, read-only organization proposal for authorized Project files, notes, and artifacts. The plan never creates folders, moves items, edits tags, or changes retrieval; review it and use the dedicated move tools for approved changes.
View JSON Schema
{
"type": "object",
"properties": {
"projectId": {
"type": "string",
"format": "uuid"
},
"strategy": {
"type": "string",
"enum": [
"by_kind",
"by_tag"
],
"default": "by_kind"
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50
}
},
"required": [
"projectId"
],
"additionalProperties": false
}