@a-company/paradigm 3.17.2 → 3.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-3DYYXGDC.js +403 -0
- package/dist/{chunk-ZRPEI35Q.js → chunk-BKMNLROM.js} +533 -5
- package/dist/{chunk-IWDLTLZH.js → chunk-BRILIG7Z.js} +155 -32
- package/dist/{chunk-D4VBBKGV.js → chunk-EZ6XW6FB.js} +150 -409
- package/dist/{delete-KBKPTIMU.js → delete-YTASL4SM.js} +3 -3
- package/dist/{dist-YHDSIZQD.js → dist-IKBGY7FQ.js} +3 -1
- package/dist/{edit-Y6SKWVHI.js → edit-S7NZD7H7.js} +1 -1
- package/dist/index.js +18 -10
- package/dist/{list-SLAH7X7N.js → list-CAL7KS7B.js} +3 -3
- package/dist/lore-loader-S5BXMH27.js +21 -0
- package/dist/{lore-server-WFU4H5DI.js → lore-server-2NYDLGCJ.js} +102 -17
- package/dist/mcp.js +503 -147
- package/dist/migrate-assessments-FPR6C35Z.js +97 -0
- package/dist/{record-PLZ2OQAN.js → record-UGN75GTB.js} +10 -7
- package/dist/{reindex-T4N3NG73.js → reindex-CMZARW5K.js} +2 -1
- package/dist/retag-URLJLMSK.js +62 -0
- package/dist/{review-Z4Z37PD5.js → review-725ZKA7U.js} +1 -1
- package/dist/{serve-BU43NO7D.js → serve-GUJ3L3IG.js} +1 -1
- package/dist/{show-WGDIK56Q.js → show-GEVVQWWG.js} +54 -5
- package/dist/{timeline-X3CZM7MW.js → timeline-B6TMGWRU.js} +9 -8
- package/dist/university-content/courses/para-501.json +30 -30
- package/dist/university-content/plsat/v3.0.json +26 -26
- package/lore-ui/dist/assets/{index-CB4RregB.js → index-CDr7Tr1E.js} +10 -10
- package/lore-ui/dist/index.html +1 -1
- package/package.json +1 -1
- package/dist/assessment-loader-C5EOUM47.js +0 -23
- package/dist/chunk-DSXS42FY.js +0 -283
|
@@ -2224,17 +2224,17 @@
|
|
|
2224
2224
|
"variants": [
|
|
2225
2225
|
{
|
|
2226
2226
|
"id": "plsat-091",
|
|
2227
|
-
"scenario": "An agent finishes a debugging session and wants to record the root cause and resolution as a lasting insight
|
|
2228
|
-
"question": "
|
|
2227
|
+
"scenario": "An agent finishes a debugging session and wants to record the root cause and resolution as a lasting insight, grouped under the `arc:auth-hardening` arc. The agent calls `paradigm_lore_record` with `type: \"insight\"`, `tags: [\"arc:auth-hardening\", \"assessment:insight\"]`, a summary, and a body with the detailed analysis. The author is `ascend` and the timestamp is `2026-04-02T16:30:00Z`.",
|
|
2228
|
+
"question": "Where is the entry stored, and how does the arc grouping work?",
|
|
2229
2229
|
"choices": {
|
|
2230
|
-
"A": "
|
|
2231
|
-
"B": "
|
|
2232
|
-
"C": "
|
|
2233
|
-
"D": "
|
|
2234
|
-
"E": "
|
|
2230
|
+
"A": "Stored in `.paradigm/assessments/arcs/arc-auth-hardening/entries/` \u2014 arcs have their own storage directories.",
|
|
2231
|
+
"B": "Stored in `.paradigm/lore/entries/2026-04-02/` as a `.lore` file \u2014 arcs are just tag prefixes, not separate storage.",
|
|
2232
|
+
"C": "Stored in `.paradigm/lore/arcs/auth-hardening/` \u2014 arc entries get their own subdirectory.",
|
|
2233
|
+
"D": "Stored in `.paradigm/lore/entries/` root directory \u2014 no date partitioning for arc entries.",
|
|
2234
|
+
"E": "Stored in both `.paradigm/lore/` and `.paradigm/assessments/` \u2014 the system maintains backward compatibility."
|
|
2235
2235
|
},
|
|
2236
2236
|
"correct": "B",
|
|
2237
|
-
"explanation": "
|
|
2237
|
+
"explanation": "All lore entries are stored in `.paradigm/lore/entries/{date}/` as `.lore` files, regardless of their tags. Arcs are simply tag prefixes (e.g., `arc:auth-hardening`) \u2014 they require no separate directory structure or management. To find all entries in an arc, use `paradigm_lore_search` with `tag: \"arc:auth-hardening\"`. This unified storage eliminates the complexity of a separate assessment system while preserving full arc-based organization through tags."
|
|
2238
2238
|
}
|
|
2239
2239
|
]
|
|
2240
2240
|
},
|
|
@@ -2245,17 +2245,17 @@
|
|
|
2245
2245
|
"variants": [
|
|
2246
2246
|
{
|
|
2247
2247
|
"id": "plsat-092",
|
|
2248
|
-
"scenario": "A developer
|
|
2249
|
-
"question": "What happens when
|
|
2248
|
+
"scenario": "A developer wants to record retrospectives about a failed deployment. They have no prior entries tagged with `arc:platform-stability`. The agent calls `paradigm_lore_record` with `type: \"retro\"`, `tags: [\"arc:platform-stability\", \"assessment:retro\"]`, a title, summary, and body describing the failure and lessons learned.",
|
|
2249
|
+
"question": "What happens when you use a new arc tag that no prior entries have?",
|
|
2250
2250
|
"choices": {
|
|
2251
|
-
"A": "The call fails
|
|
2252
|
-
"B": "The entry is recorded as an
|
|
2253
|
-
"C": "The
|
|
2254
|
-
"D": "The
|
|
2255
|
-
"E": "The
|
|
2251
|
+
"A": "The call fails \u2014 arcs must be explicitly created before tagging entries.",
|
|
2252
|
+
"B": "The entry is recorded normally \u2014 arcs are just tag prefixes, no creation step needed. The arc exists as soon as an entry has the tag.",
|
|
2253
|
+
"C": "The system auto-creates a `.paradigm/lore/arcs/platform-stability/` directory to track the arc.",
|
|
2254
|
+
"D": "The entry is recorded but flagged as orphaned until an arc is formally registered.",
|
|
2255
|
+
"E": "The tag is rejected because it does not match an existing arc in the arc registry."
|
|
2256
2256
|
},
|
|
2257
|
-
"correct": "
|
|
2258
|
-
"explanation": "
|
|
2257
|
+
"correct": "B",
|
|
2258
|
+
"explanation": "Arcs in the unified lore system are simply tag prefixes \u2014 no explicit creation needed. The first entry tagged with `arc:platform-stability` effectively creates that arc. To find all entries in this arc later, use `paradigm_lore_search` with `tag: \"arc:platform-stability\"`. To close the arc, add `arc-closed` and `arc-status:complete` tags to its entries. This tag-based approach eliminates the overhead of managing separate arc directories and YAML files."
|
|
2259
2259
|
}
|
|
2260
2260
|
]
|
|
2261
2261
|
},
|
|
@@ -2266,17 +2266,17 @@
|
|
|
2266
2266
|
"variants": [
|
|
2267
2267
|
{
|
|
2268
2268
|
"id": "plsat-093",
|
|
2269
|
-
"scenario": "Your project has been running for six months. The codebase has 200+ commits
|
|
2270
|
-
"question": "Which statement BEST describes Paradigm's
|
|
2269
|
+
"scenario": "Your project has been running for six months. The codebase has 200+ commits in git and 57 lore entries: 45 are `agent-session` type (automatic session records), 8 have `arc:*` tags (retrospectives and insights grouped into thematic arcs), and 4 are `decision` type (architectural decisions). A new team member asks how lore's different entry types and tags work together.",
|
|
2270
|
+
"question": "Which statement BEST describes Paradigm's unified lore model?",
|
|
2271
2271
|
"choices": {
|
|
2272
|
-
"A": "
|
|
2273
|
-
"B": "Lore
|
|
2274
|
-
"C": "
|
|
2275
|
-
"D": "
|
|
2276
|
-
"E": "
|
|
2272
|
+
"A": "Lore entries are all the same \u2014 tags are purely cosmetic and do not affect searching or organization.",
|
|
2273
|
+
"B": "Lore is the single project memory system. Entry types classify the nature of knowledge (session, retro, insight, decision), while tags like `arc:*` group related entries into themes \u2014 both are filterable via `paradigm_lore_search`.",
|
|
2274
|
+
"C": "Session entries and reflection entries are stored in separate directories, with tags used only for cross-referencing between them.",
|
|
2275
|
+
"D": "The `arc:*` tags are managed by a separate arc subsystem that must be initialized before use.",
|
|
2276
|
+
"E": "Entry types are deprecated \u2014 tags alone drive all classification in the new model."
|
|
2277
2277
|
},
|
|
2278
|
-
"correct": "
|
|
2279
|
-
"explanation": "Paradigm's
|
|
2278
|
+
"correct": "B",
|
|
2279
|
+
"explanation": "Paradigm's unified lore model uses one system with two classification axes: entry `type` classifies the nature of the knowledge (agent-session for automated records, retro for retrospectives, insight for patterns, decision for choices, etc.), while tags provide flexible grouping (arc:* for thematic arcs, assessment:* for reflection type, plus arbitrary project tags). Both are searchable via `paradigm_lore_search` \u2014 you can filter by type, tag prefix, symbol, author, and date range. All entries live in the same `.paradigm/lore/entries/` directory structure regardless of type or tags."
|
|
2280
2280
|
}
|
|
2281
2281
|
]
|
|
2282
2282
|
},
|