@jayjiang/byoao 2.0.2 → 2.0.3

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.
@@ -14,6 +14,16 @@ Agent pages: Knowledge pages maintained by the Agent, located in `entities/`, `c
14
14
  **Use Obsidian CLI for all note operations** (`obsidian read`, `obsidian search`, `obsidian create`, etc.).
15
15
  Do not use bash (`cat`, `grep`, `find`, `sed`, etc.) to manipulate note files directly — Obsidian CLI correctly maintains wikilinks, frontmatter, and file relationships.
16
16
 
17
+ ## Knowledge Retrieval (Q&A)
18
+
19
+ For questions that must be answered **from this vault** (not general knowledge), follow this chain. **Authoritative specification: the `/ask` skill** — if this summary diverges, follow `/ask`.
20
+
21
+ - Read **`INDEX.base`** first when it exists (compiled knowledge map and page discovery).
22
+ - Read **`SCHEMA.md`** when you need tag taxonomy, domain rules, or agent directory conventions.
23
+ - Run **`obsidian search`** with each key concept; merge results across queries.
24
+ - Run **`obsidian read`** on promising paths. Prefer agent pages under `entities/`, `concepts/`, `comparisons/`, and `queries/`, then pages whose tags or `domain` match the question, `status: reviewed` over `draft`, and more recent `updated`.
25
+ - **Synthesize** a direct answer with `[[wikilink]]` citations and explicit gaps. Every claim should be backed by vault notes.
26
+
17
27
  ## Available Skills
18
28
  - **/cook** — Digest notes and external sources, compile knowledge pages
19
29
  - **/health** — Check knowledge page health (orphans, stale content, contradictions)
@@ -55,3 +55,7 @@ See the /cook skill specification for the complete frontmatter schema. Key requi
55
55
  ## Custom Fields
56
56
 
57
57
  No custom fields defined yet. The Agent documents new fields here when first used.
58
+
59
+ ## Retrieval
60
+
61
+ Taxonomy, directories, and frontmatter support **filtering and ranking** during vault Q&A. The step-by-step protocol is summarized in **Knowledge Retrieval (Q&A)** in `AGENTS.md`; full behavior is defined by the **`/ask`** skill.
package/dist/index.js CHANGED
@@ -28262,7 +28262,7 @@ async function configureProvider(provider, gcpProjectId) {
28262
28262
 
28263
28263
  // dist/vault/manifest.js
28264
28264
  import path4 from "node:path";
28265
- var PKG_VERSION = "2.0.2";
28265
+ var PKG_VERSION = "2.0.3";
28266
28266
  var InfrastructureSchema = external_exports2.object({
28267
28267
  skills: external_exports2.array(external_exports2.string()).default([]),
28268
28268
  commands: external_exports2.array(external_exports2.string()).default([]),
@@ -1,7 +1,7 @@
1
1
  import { fs } from "../lib/cjs-modules.js";
2
2
  import path from "node:path";
3
3
  import { z } from "zod";
4
- const PKG_VERSION = "2.0.2";
4
+ const PKG_VERSION = "2.0.3";
5
5
  // ── Schema ──────────────────────────────────────────────────────
6
6
  const InfrastructureSchema = z.object({
7
7
  skills: z.array(z.string()).default([]),
@@ -1,6 +1,6 @@
1
1
  import { execSync } from "node:child_process";
2
2
  import { semver } from "../lib/cjs-modules.js";
3
- const PKG_VERSION = "2.0.2";
3
+ const PKG_VERSION = "2.0.3";
4
4
  // ── Constants ───────────────────────────────────────────────────
5
5
  const PACKAGE_NAME = "@jayjiang/byoao";
6
6
  const REGISTRY_TIMEOUT_MS = 5_000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jayjiang/byoao",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Build Your Own AI OS — Obsidian + AI Agent",
5
5
  "type": "module",
6
6
  "engines": {
@@ -14,6 +14,16 @@ Agent pages: Knowledge pages maintained by the Agent, located in `entities/`, `c
14
14
  **Use Obsidian CLI for all note operations** (`obsidian read`, `obsidian search`, `obsidian create`, etc.).
15
15
  Do not use bash (`cat`, `grep`, `find`, `sed`, etc.) to manipulate note files directly — Obsidian CLI correctly maintains wikilinks, frontmatter, and file relationships.
16
16
 
17
+ ## Knowledge Retrieval (Q&A)
18
+
19
+ For questions that must be answered **from this vault** (not general knowledge), follow this chain. **Authoritative specification: the `/ask` skill** — if this summary diverges, follow `/ask`.
20
+
21
+ - Read **`INDEX.base`** first when it exists (compiled knowledge map and page discovery).
22
+ - Read **`SCHEMA.md`** when you need tag taxonomy, domain rules, or agent directory conventions.
23
+ - Run **`obsidian search`** with each key concept; merge results across queries.
24
+ - Run **`obsidian read`** on promising paths. Prefer agent pages under `entities/`, `concepts/`, `comparisons/`, and `queries/`, then pages whose tags or `domain` match the question, `status: reviewed` over `draft`, and more recent `updated`.
25
+ - **Synthesize** a direct answer with `[[wikilink]]` citations and explicit gaps. Every claim should be backed by vault notes.
26
+
17
27
  ## Available Skills
18
28
  - **/cook** — Digest notes and external sources, compile knowledge pages
19
29
  - **/health** — Check knowledge page health (orphans, stale content, contradictions)
@@ -55,3 +55,7 @@ See the /cook skill specification for the complete frontmatter schema. Key requi
55
55
  ## Custom Fields
56
56
 
57
57
  No custom fields defined yet. The Agent documents new fields here when first used.
58
+
59
+ ## Retrieval
60
+
61
+ Taxonomy, directories, and frontmatter support **filtering and ranking** during vault Q&A. The step-by-step protocol is summarized in **Knowledge Retrieval (Q&A)** in `AGENTS.md`; full behavior is defined by the **`/ask`** skill.