diff --git a/memory/ontology/schema.yaml b/memory/ontology/schema.yaml index cbb71ce..92472a1 100644 --- a/memory/ontology/schema.yaml +++ b/memory/ontology/schema.yaml @@ -41,6 +41,7 @@ types: start_date: date? end_date: date? folder: string? + doc_path: string? tags: string[]? Task: @@ -54,6 +55,8 @@ types: project: ref(Project)? due: datetime? estimate_hours: number? + folder: string? + doc_path: string? blockers: ref(Task)[]? tags: string[]? diff --git a/skills/ontology/references/schema.md b/skills/ontology/references/schema.md index 094c894..6575fd9 100644 --- a/skills/ontology/references/schema.md +++ b/skills/ontology/references/schema.md @@ -40,6 +40,8 @@ Project: goals: ref(Goal)[]? start_date: date? end_date: date? + folder: string? + doc_path: string? tags: string[]? Task: @@ -53,6 +55,8 @@ Task: project: ref(Project)? due: datetime? estimate_hours: number? + folder: string? + doc_path: string? blockers: ref(Task)[]? tags: string[]?