v2026.1 Open Portal ↗
On this page

Knowledge Studio

Studio Overview

Knowledge Studio is the AI-powered authoring environment within StackFlow. It leverages Amazon Bedrock's Claude models to assist knowledge managers in creating, improving, and maintaining KB articles at scale. Studio is accessible at Knowledge → Knowledge Studio and requires the kb_manager or super_admin role.

⚙️ Minimum Requirements
  • Bedrock Model: anthropic.claude-3-5-sonnet-20241022-v2:0 enabled in Bedrock console for account 373544523367
  • DynamoDB: StackFlow_AIExemplar table with exemplar articles for few-shot prompting
  • Feature Flag: knowledge_studio_ai enabled in StackFlow_FeatureFlag for the tenant
  • IAM: StackFlowAPIRole with bedrock:InvokeModel on the Claude model ARN

AI Article Generation

Generate new KB articles directly from incident resolutions, change post-implementation reviews, or free-form topics. The generation engine queries the Bedrock KB for related existing articles to avoid duplication and ensure consistency with your organization's existing documentation style.

curl -X POST https://your-instance.stackflow-tech.com/prod/api/knowledge/studio/generate   -H "Authorization: Bearer $TOKEN"   -H "Content-Type: application/json"   -d '{
    "source": "incident",
    "source_id": "INC0001234",
    "article_type": "troubleshooting",
    "target_audience": "agents",
    "include_resolution": true
  }'
Generated Article Review: AI-generated articles always start in Draft state. They must be reviewed and approved by a knowledge manager before publication. Never auto-publish AI-generated content without human review.

Article Improvement

The Article Improvement tool analyzes existing articles for readability, completeness, accuracy, and SEO. It provides specific suggestions for improvement and can automatically apply improvements in "suggest mode" (tracked changes style) or "auto mode" (applies changes, creates new draft version). Common improvements include: adding missing steps, fixing broken links, updating outdated screenshots, and improving title clarity for better search visibility.

Bulk Operations

Knowledge Studio supports bulk operations on article sets: bulk category reassignment, bulk access control changes, bulk expiry setting, and bulk AI review for outdated content. Bulk operations are processed asynchronously and the status can be tracked in the Studio job queue.

Bulk OperationUse CaseMax Batch Size
Bulk CategorizeReorganizing article taxonomy500 articles
Bulk RetireRetiring outdated content after audit200 articles
Bulk AI ReviewQuality check of existing articles100 articles
Bulk Re-indexForce Bedrock re-indexing after content changes1000 articles

Quality Scoring

Every article receives a Quality Score (0-100) calculated from: readability (Flesch-Kincaid grade level), completeness (does it have a title, body, category, tags?), freshness (days since last review), engagement (views, useful ratings), and semantic uniqueness (how different is it from other articles?). Target a quality score above 70 for all published articles.