You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Archcore organizes documents into three virtual categories — **vision**, **knowledge**, and **experience**. The category is derived from the document type in the filename (`slug.type.md`), not from the directory path.
9
+
10
+
## Vision
11
+
12
+
Documents that describe the future: what we want to build and why.
|`task-type`| A proven workflow for a recurring implementation task — steps, examples, pitfalls |
40
+
|`cpat`| A code pattern change — how and why a convention or approach changed (was → became) |
41
+
42
+
## Choosing the Right Type
43
+
44
+
-**rule vs doc** — rule prescribes behavior ("Always do X") with enforcement. doc describes what exists. Descriptive content → doc.
45
+
-**adr vs rfc** — adr = decision already final. rfc = proposal open for feedback.
46
+
-**guide vs doc** — guide has sequential steps to follow. doc is non-sequential reference to look up.
47
+
-**task-type vs guide** — task-type is a reusable pattern for a class of tasks (e.g., "how to create a UI-kit component"). guide is instructions for a specific one-time procedure.
48
+
-**cpat vs adr** — cpat focuses on a code pattern change with before/after examples. adr records a broader architectural decision with alternatives and consequences.
Copy file name to clipboardExpand all lines: internal/mcp/tools/list_documents.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Use the returned paths directly as input to get_document. Do not construct paths
26
26
mcp.WithStringItems(),
27
27
),
28
28
mcp.WithString("category",
29
-
mcp.Description(`Filter by virtual category (derived from document type, not directory). Use "knowledge" for decisions/standards/guides/docs/proposals, "vision" for requirements/ideas/plans, "experience" for workflows and corrective actions.`),
29
+
mcp.Description(`Filter by virtual category (derived from document type, not directory). Use "knowledge" for decisions/standards/guides/docs/proposals, "vision" for requirements/ideas/plans, "experience" for task patterns and code pattern changes.`),
0 commit comments