Knowledge Review Workflow
Цей контент ще не доступний вашою мовою.
When multiple people contribute to a vault, not every entry should go live immediately. The knowledge review workflow adds a quality gate: entries are submitted for review, a reviewer approves or rejects them, and only approved entries are treated as trusted knowledge.
How review status works
Section titled “How review status works”Every vault entry has a review status that moves through a simple lifecycle:
draft → pending_review → approved → rejectedBy default, entries captured directly go straight into the vault without review. The review workflow is for entries that need a second pair of eyes — team conventions, architectural decisions, security patterns.
Submitting an entry for review
Section titled “Submitting an entry for review”After capturing an entry, submit it for review:
You: “Submit the ‘Database Sharding Strategy’ entry for review”
Agent: Submitted for review: “Database Sharding Strategy” — status changed to pending_review.
You can include your name so reviewers know who submitted it:
You: “Submit entry abc-123 for review, submitter: Alex”
Agent: Submitted by Alex. Pending review.
Reviewing pending entries
Section titled “Reviewing pending entries”See what’s waiting for review:
You: “Show pending reviews”
Agent: 3 entries pending review:
- Database Sharding Strategy — submitted by Alex, 2 hours ago
- API Versioning Convention — submitted by Jordan, 1 day ago
- Feature Flag Naming Standard — submitted by Sam, 3 days ago
Approving an entry
Section titled “Approving an entry”When you’ve reviewed an entry and it looks good:
You: “Approve the ‘Database Sharding Strategy’ entry”
Agent: Approved: “Database Sharding Strategy” — status changed to approved.
Add a comment to explain your review decision:
You: “Approve entry abc-123, reviewer: Pat, comment: ‘Solid approach, aligns with our horizontal scaling plan’”
Agent: Approved by Pat with comment.
Rejecting an entry
Section titled “Rejecting an entry”If an entry isn’t ready or doesn’t meet the team’s standards:
You: “Reject the ‘API Versioning Convention’ entry, comment: ‘Needs to address breaking change policy before we adopt this’”
Agent: Rejected: “API Versioning Convention” — reason: Needs to address breaking change policy before we adopt this.
Rejected entries stay in the vault — they’re not deleted. The submitter can revise the entry and resubmit.
Checking review stats
Section titled “Checking review stats”See the overall state of your review pipeline:
You: “Show review stats”
Agent: Review statistics:
- Pending: 2
- Approved: 47
- Rejected: 5
Who should review what
Section titled “Who should review what”Review is most valuable for:
- Team conventions — coding standards, naming rules, commit formats that everyone must follow
- Architectural decisions — choices that affect the whole system and are hard to reverse
- Security patterns — anything marked critical that could cause real damage if wrong
- Anti-patterns — patterns you want the whole team to avoid
For personal patterns, quick captures, and exploratory knowledge, skip the review — capture directly and refine later.
Access control
Section titled “Access control”Submitting an entry for review requires write access. Approving or rejecting requires admin access. This separation ensures that anyone can propose knowledge, but only designated reviewers can promote it to approved status.
Related guides
Section titled “Related guides”- Content Ingestion — bulk-ingested entries are good candidates for review
- Entry Linking & Knowledge Graph — link approved entries into the knowledge graph
- Team Workflows — how review fits into team knowledge sharing
- Vault Branching — stage reviewed changes on a branch before merging
- Capabilities — full list of review operations
- API Reference — parameter details for
vault_submit_review,vault_approve,vault_reject
Previous: Content Ingestion — feed documents into your vault. Next: Sync & Export — back up your vault to git or use it in Obsidian.