[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-search-company-knowledge":3,"mdc-qk44w4-key":36,"related-repo-openai-search-company-knowledge":1665,"related-org-openai-search-company-knowledge":1789},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"search-company-knowledge","search internal company knowledge bases","Search across company knowledge bases (Confluence, Jira, internal docs) to find and explain internal concepts, processes, and technical details. When an agent needs to: (1) Find or search for information about systems, terminology, processes, deployment, authentication, infrastructure, architecture, or technical concepts, (2) Search internal documentation, knowledge base, company docs, or our docs, (3) Explain what something is, how it works, or look up information, or (4) Synthesize information from multiple sources. Searches in parallel and provides cited answers.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Confluence","confluence","tag",{"name":17,"slug":18,"type":15},"Jira","jira",{"name":20,"slug":21,"type":15},"Enterprise Search","enterprise-search",{"name":23,"slug":24,"type":15},"Knowledge Management","knowledge-management",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-16T05:12:08.533384",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fatlassian-rovo\u002Fskills\u002Fsearch-company-knowledge","---\nname: search-company-knowledge\ndescription: \"Search across company knowledge bases (Confluence, Jira, internal docs) to find and explain internal concepts, processes, and technical details. When an agent needs to: (1) Find or search for information about systems, terminology, processes, deployment, authentication, infrastructure, architecture, or technical concepts, (2) Search internal documentation, knowledge base, company docs, or our docs, (3) Explain what something is, how it works, or look up information, or (4) Synthesize information from multiple sources. Searches in parallel and provides cited answers.\"\n---\n\n# Search Company Knowledge\n\n## Keywords\nfind information, search company knowledge, look up, what is, explain, company docs, internal documentation, Confluence search, Jira search, our documentation, internal knowledge, knowledge base, search for, tell me about, get information about, company systems, terminology, find everything about, what do we know about, deployment, authentication, infrastructure, processes, procedures, how to, how does, our systems, our processes, internal systems, company processes, technical documentation, engineering docs, architecture, configuration, search our docs, search internal docs, find in our docs\n\n## Overview\n\nSearch across siloed company knowledge systems (Confluence, Jira, internal documentation) to find comprehensive answers to questions about internal concepts, systems, and terminology. This skill performs parallel searches across multiple sources and synthesizes results with proper citations.\n\n**Use this skill when:** Users ask about internal company knowledge that might be documented in Confluence pages, Jira tickets, or internal documentation.\n\n---\n\n## Workflow\n\nFollow this 5-step process to provide comprehensive, well-cited answers:\n\n### Step 1: Identify Search Query\n\nExtract the core search terms from the user's question.\n\n**Examples:**\n- User: \"Find everything about Stratus minions\" → Search: \"Stratus minions\"\n- User: \"What do we know about the billing system?\" → Search: \"billing system\"\n- User: \"Explain our deployment process\" → Search: \"deployment process\"\n\n**Consider:**\n- Main topic or concept\n- Any specific system\u002Fcomponent names\n- Technical terms or jargon\n\n---\n\n### Step 2: Execute Parallel Search\n\nSearch across all available knowledge sources simultaneously for comprehensive coverage.\n\n#### Option A: Cross-System Search (Recommended First)\n\nUse the **`search`** tool (Rovo Search) to search across Confluence and Jira at once:\n\n```\nsearch(\n  cloudId=\"...\",\n  query=\"[extracted search terms]\"\n)\n```\n\n**When to use:** \n- Default approach for most queries\n- When you don't know which system has the information\n- Fastest way to get results from multiple sources\n\n**Example:**\n```\nsearch(\n  cloudId=\"...\",\n  query=\"Stratus minions\"\n)\n```\n\nThis returns results from both Confluence pages and Jira issues.\n\n#### Option B: Targeted Confluence Search\n\nUse **`searchConfluenceUsingCql`** when specifically searching Confluence:\n\n```\nsearchConfluenceUsingCql(\n  cloudId=\"...\",\n  cql=\"text ~ 'search terms' OR title ~ 'search terms'\"\n)\n```\n\n**When to use:**\n- User specifically mentions \"in Confluence\" or \"in our docs\"\n- Cross-system search returns too many Jira results\n- Looking for documentation rather than tickets\n\n**Example CQL patterns:**\n```\ntext ~ \"Stratus minions\"\ntext ~ \"authentication\" AND type = page\ntitle ~ \"deployment guide\"\n```\n\n#### Option C: Targeted Jira Search\n\nUse **`searchJiraIssuesUsingJql`** when specifically searching Jira:\n\n```\nsearchJiraIssuesUsingJql(\n  cloudId=\"...\",\n  jql=\"text ~ 'search terms' OR summary ~ 'search terms'\"\n)\n```\n\n**When to use:**\n- User mentions \"tickets\", \"issues\", or \"bugs\"\n- Looking for historical problems or implementation details\n- Cross-system search returns mostly documentation\n\n**Example JQL patterns:**\n```\ntext ~ \"Stratus minions\"\nsummary ~ \"authentication\" AND type = Bug\ntext ~ \"deployment\" AND created >= -90d\n```\n\n#### Search Strategy\n\n**For most queries, use this sequence:**\n\n1. Start with `search` (cross-system) - **always try this first**\n2. If results are unclear, follow up with targeted searches\n3. If results mention specific pages\u002Ftickets, fetch them for details\n\n---\n\n### Step 3: Fetch Detailed Content\n\nAfter identifying relevant sources, fetch full content for comprehensive answers.\n\n#### For Confluence Pages\n\nWhen search results reference Confluence pages:\n\n```\ngetConfluencePage(\n  cloudId=\"...\",\n  pageId=\"[page ID from search results]\",\n  contentFormat=\"markdown\"\n)\n```\n\n**Returns:** Full page content in Markdown format\n\n**When to fetch:**\n- Search result snippet is too brief\n- Need complete context\n- Page seems to be the primary documentation\n\n#### For Jira Issues\n\nWhen search results reference Jira issues:\n\n```\ngetJiraIssue(\n  cloudId=\"...\",\n  issueIdOrKey=\"PROJ-123\"\n)\n```\n\n**Returns:** Full issue details including description, comments, status\n\n**When to fetch:**\n- Need to understand a reported bug or issue\n- Search result doesn't show full context\n- Issue contains important implementation notes\n\n#### Prioritization\n\n**Fetch in this order:**\n1. **Official documentation pages** (Confluence pages with \"guide\", \"documentation\", \"overview\" in title)\n2. **Recent\u002Frelevant issues** (Jira tickets that are relevant and recent)\n3. **Additional context** (related pages mentioned in initial results)\n\n**Don't fetch everything** - be selective based on relevance to user's question.\n\n---\n\n### Step 4: Synthesize Results\n\nCombine information from multiple sources into a coherent answer.\n\n#### Synthesis Guidelines\n\n**Structure your answer:**\n\n1. **Direct Answer First**\n   - Start with a clear, concise answer to the question\n   - \"Stratus minions are...\"\n\n2. **Detailed Explanation**\n   - Provide comprehensive details from all sources\n   - Organize by topic, not by source\n\n3. **Source Attribution**\n   - Note where each piece of information comes from\n   - Format: \"According to [source], ...\"\n\n4. **Highlight Discrepancies**\n   - If sources conflict, note it explicitly\n   - Example: \"The Confluence documentation states X, however Jira ticket PROJ-123 indicates that due to bug Y, the behavior is actually Z\"\n\n5. **Provide Context**\n   - Mention if information is outdated\n   - Note if a feature is deprecated or in development\n\n#### Synthesis Patterns\n\n**Pattern 1: Multiple sources agree**\n```\nStratus minions are background worker processes that handle async tasks.\n\nAccording to the Confluence documentation, they process jobs from the queue and \ncan be scaled horizontally. This is confirmed by several Jira tickets (PROJ-145, \nPROJ-203) which discuss minion configuration and scaling strategies.\n```\n\n**Pattern 2: Sources provide different aspects**\n```\nThe billing system has two main components:\n\n**Payment Processing** (from Confluence \"Billing Architecture\" page)\n- Handles credit card transactions\n- Integrates with Stripe API\n- Runs nightly reconciliation\n\n**Invoice Generation** (from Jira PROJ-189)\n- Creates monthly invoices\n- Note: Currently has a bug where tax calculation fails for EU customers\n- Fix planned for Q1 2024\n```\n\n**Pattern 3: Conflicting information**\n```\nThere is conflicting information about the authentication timeout:\n\n- **Official Documentation** (Confluence) states: 30-minute session timeout\n- **Implementation Reality** (Jira PROJ-456, filed Oct 2023): Actual timeout is \n  15 minutes due to load balancer configuration\n- **Status:** Engineering team aware, fix planned but no timeline yet\n\nCurrent behavior: Expect 15-minute timeout despite docs saying 30 minutes.\n```\n\n**Pattern 4: Incomplete information**\n```\nBased on available documentation:\n\n[What we know about deployment process from Confluence and Jira]\n\nHowever, I couldn't find information about:\n- Rollback procedures\n- Database migration handling\n\nYou may want to check with the DevOps team or search for additional documentation.\n```\n\n---\n\n### Step 5: Provide Citations\n\nAlways include links to source materials so users can explore further.\n\n#### Citation Format\n\n**For Confluence pages:**\n```\n**Source:** [Page Title](https:\u002F\u002Fyoursite.atlassian.net\u002Fwiki\u002Fspaces\u002FSPACE\u002Fpages\u002F123456)\n```\n\n**For Jira issues:**\n```\n**Related Tickets:**\n- [PROJ-123](https:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-123) - Brief description\n- [PROJ-456](https:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-456) - Brief description\n```\n\n**Complete citation section:**\n```\n## Sources\n\n**Confluence Documentation:**\n- [Stratus Architecture Guide](https:\u002F\u002Fyoursite.atlassian.net\u002Fwiki\u002Fspaces\u002FDOCS\u002Fpages\u002F12345)\n- [Minion Configuration](https:\u002F\u002Fyoursite.atlassian.net\u002Fwiki\u002Fspaces\u002FDEVOPS\u002Fpages\u002F67890)\n\n**Jira Issues:**\n- [PROJ-145](https:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-145) - Minion scaling implementation\n- [PROJ-203](https:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-203) - Performance optimization\n\n**Additional Resources:**\n- [Internal architecture doc link if found]\n```\n\n---\n\n## Search Best Practices\n\n### Effective Search Terms\n\n**Do:**\n- ✅ Use specific technical terms: \"OAuth authentication flow\"\n- ✅ Include system names: \"Stratus minions\"\n- ✅ Use acronyms if they're common: \"API rate limiting\"\n- ✅ Try variations if first search fails: \"deploy process\" → \"deployment pipeline\"\n\n**Don't:**\n- ❌ Be too generic: \"how things work\"\n- ❌ Use full sentences: Use key terms instead\n- ❌ Include filler words: \"the\", \"our\", \"about\"\n\n### Search Result Quality\n\n**Good results:**\n- Recent documentation (\u003C 1 year old)\n- Official\u002Fcanonical pages (titled \"Guide\", \"Documentation\", \"Overview\")\n- Multiple sources confirming same information\n- Detailed implementation notes\n\n**Questionable results:**\n- Very old tickets (> 2 years, may be outdated)\n- Duplicate or conflicting information\n- Draft pages or work-in-progress docs\n- Personal pages (may not be official)\n\n**When results are poor:**\n- Try different search terms\n- Expand search to include related concepts\n- Search for specific error messages or codes\n- Ask user for more context\n\n---\n\n## Handling Common Scenarios\n\n### Scenario 1: No Results Found\n\nIf searches return no results:\n\n```\nI searched across Confluence and Jira but couldn't find information about \"[topic]\".\n\nThis could mean:\n- The concept hasn't been documented yet\n- It might be called something else (can you provide alternative names?)\n- Documentation might be in a different system I don't have access to\n\nWould you like me to:\n1. Try searching with different terms?\n2. Search for related concepts?\n3. Look for mentions in recent Jira tickets?\n```\n\n### Scenario 2: Too Many Results\n\nIf search returns 50+ results:\n\n- Focus on most recent and most relevant (top 10-15)\n- Prioritize official documentation over random tickets\n- Group similar results: \"I found 15 tickets related to authentication bugs...\"\n- Offer to narrow search: \"Would you like me to focus on [specific aspect]?\"\n\n### Scenario 3: Ambiguous Query\n\nIf the user's question is vague:\n\n```\nI found information about several topics related to \"[term]\":\n1. [Topic A] - from Confluence page X\n2. [Topic B] - from Jira tickets Y, Z\n3. [Topic C] - from documentation W\n\nWhich aspect are you most interested in?\n```\n\n### Scenario 4: Outdated Information\n\nIf you find information is old:\n\n```\nI found documentation about [topic], but note that it's from [date] and may be outdated.\n\n[Provide the information anyway]\n\nYou may want to verify this is still current, especially if it's from more than \na year ago.\n```\n\n### Scenario 5: Restricted\u002FPrivate Content\n\nIf search returns inaccessible content:\n\n```\nSearch results mention [topic] in the following locations, but I don't have \naccess to view the full content:\n- Confluence page: [title] (Space: [SPACE])\n- Jira issue: PROJ-123\n\nYou may need to access these directly or check your permissions.\n```\n\n---\n\n## Examples\n\n### Example 1: Clear Documentation Available\n\n**User:** \"What are Stratus minions?\"\n\n**Process:**\n1. Search: `search(cloudId=\"...\", query=\"Stratus minions\")`\n2. Find: Confluence page \"Stratus Architecture\" + 3 Jira tickets\n3. Fetch: Get full Confluence page content\n4. Synthesize: Combine architectural overview with implementation details from tickets\n5. Cite: Provide links to all sources\n\n**Answer:**\n```\nStratus minions are background worker processes that handle asynchronous task \nprocessing in the Stratus system.\n\n**Key Characteristics:**\n- Run independently from web servers\n- Process jobs from a Redis queue\n- Can be scaled horizontally for increased throughput\n- Handle tasks like email sending, report generation, and data processing\n\n**Architecture:**\nAccording to the Stratus Architecture documentation, minions follow a \nworker-queue pattern where:\n1. Web application enqueues tasks\n2. Minions poll the queue for work\n3. Tasks are processed asynchronously\n4. Results are stored in the database\n\n**Implementation Notes:**\nFrom Jira ticket PROJ-203, the current deployment runs 5 minion instances, \nwith plans to scale to 10 for handling increased load.\n\n## Sources\n- [Stratus Architecture Guide](link)\n- [PROJ-203](link) - Minion scaling implementation\n```\n\n### Example 2: Conflicting Information\n\n**User:** \"How long is our session timeout?\"\n\n**Process:**\n1. Search across Confluence and Jira\n2. Find: Docs say 30 min, but ticket reports actual timeout is 15 min\n3. Fetch both sources for complete context\n4. Clearly note the discrepancy\n\n**Answer:**\n```\nThere is a discrepancy between documented and actual behavior:\n\n**Official Documentation** (Security Guidelines):\nSession timeout is configured for 30 minutes of inactivity.\n\n**Actual Behavior** (PROJ-456, reported Oct 2023):\nUsers are being logged out after 15 minutes due to a load balancer configuration \nthat overrides the application setting.\n\n**Current Status:**\nThe engineering team is aware of this issue. The load balancer timeout needs to \nbe adjusted to match the application setting. No fix timeline has been set.\n\n**Recommendation:** Plan for 15-minute timeout until this is resolved.\n\n## Sources\n- [Security Guidelines](link) - Official documentation\n- [PROJ-456](link) - Timeout discrepancy bug report\n```\n\n### Example 3: Partial Information\n\n**User:** \"Explain our deployment process\"\n\n**Process:**\n1. Search finds some information but not complete\n2. Synthesize what is available\n3. Note gaps in documentation\n\n**Answer:**\n```\nBased on available documentation, here's what I found about the deployment process:\n\n**Build Phase** (from Confluence \"CI\u002FCD Guide\"):\n1. Code pushed to main branch triggers GitHub Actions\n2. Automated tests run (unit, integration)\n3. Docker image built and pushed to registry\n\n**Deployment Phase** (from Jira PROJ-789):\n4. Staging deployment happens automatically\n5. Manual approval required for production\n6. Blue-green deployment strategy used\n\n**Gaps in Documentation:**\nI couldn't find documented information about:\n- Rollback procedures\n- Database migration handling\n- Post-deployment verification steps\n\nThese details may exist in tribal knowledge or need to be documented.\n\n## Sources\n- [CI\u002FCD Guide](link)\n- [PROJ-789](link) - Deployment pipeline implementation\n\nWould you like me to search for more specific aspects of deployment?\n```\n\n---\n\n## Tips for High-Quality Answers\n\n### Do:\n✅ Always search before answering (don't rely on general knowledge)\n✅ Cite all sources with links\n✅ Note discrepancies explicitly\n✅ Mention when information is old\n✅ Provide context and examples\n✅ Structure answers clearly with headers\n✅ Link to related documentation\n\n### Don't:\n❌ Assume general knowledge applies to this company\n❌ Make up information if search returns nothing\n❌ Ignore conflicting information\n❌ Quote entire documents (summarize instead)\n❌ Overwhelm with too many sources (curate top 5-10)\n❌ Forget to fetch details when snippets are insufficient\n\n---\n\n## When NOT to Use This Skill\n\nThis skill is for **internal company knowledge only**. Do NOT use for:\n\n❌ General technology questions (use your training knowledge)\n❌ External documentation (use web_search)\n❌ Company-agnostic questions\n❌ Questions about other companies\n❌ Current events or news\n\n**Examples of what NOT to use this skill for:**\n- \"What is machine learning?\" (general knowledge)\n- \"How does React work?\" (external documentation)\n- \"What's the weather?\" (not knowledge search)\n- \"Find a restaurant\" (not work-related)\n\n---\n\n## Quick Reference\n\n**Primary tool:** `search(cloudId, query)` - Use this first, always\n\n**Follow-up tools:**\n- `getConfluencePage(cloudId, pageId, contentFormat)` - Get full page content\n- `getJiraIssue(cloudId, issueIdOrKey)` - Get full issue details\n- `searchConfluenceUsingCql(cloudId, cql)` - Targeted Confluence search\n- `searchJiraIssuesUsingJql(cloudId, jql)` - Targeted Jira search\n\n**Answer structure:**\n1. Direct answer\n2. Detailed explanation\n3. Source attribution\n4. Discrepancies (if any)\n5. Citations with links\n\n**Remember:**\n- Parallel search > Sequential search\n- Synthesize, don't just list\n- Always cite sources\n- Note conflicts explicitly\n- Be clear about gaps in documentation\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,56,62,68,73,84,88,94,99,106,111,119,139,147,165,168,174,179,186,203,215,223,241,249,258,263,269,285,294,301,319,327,336,342,357,366,373,391,399,408,414,422,453,456,462,467,473,478,487,497,505,523,529,534,543,552,559,577,583,591,624,634,637,643,648,654,662,778,784,792,801,809,818,826,835,843,852,855,861,866,872,880,889,897,906,914,923,926,932,938,946,969,977,995,1001,1009,1032,1040,1063,1071,1094,1097,1103,1109,1114,1123,1129,1134,1164,1170,1175,1184,1190,1195,1204,1210,1215,1224,1227,1233,1239,1249,1257,1291,1299,1308,1314,1323,1330,1353,1360,1369,1375,1384,1391,1409,1416,1425,1428,1434,1439,1444,1449,1454,1457,1463,1475,1480,1488,1511,1514,1520,1538,1546,1593,1601,1629,1637],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","Search Company Knowledge",{"type":42,"tag":50,"props":51,"children":53},"h2",{"id":52},"keywords",[54],{"type":47,"value":55},"Keywords",{"type":42,"tag":57,"props":58,"children":59},"p",{},[60],{"type":47,"value":61},"find information, search company knowledge, look up, what is, explain, company docs, internal documentation, Confluence search, Jira search, our documentation, internal knowledge, knowledge base, search for, tell me about, get information about, company systems, terminology, find everything about, what do we know about, deployment, authentication, infrastructure, processes, procedures, how to, how does, our systems, our processes, internal systems, company processes, technical documentation, engineering docs, architecture, configuration, search our docs, search internal docs, find in our docs",{"type":42,"tag":50,"props":63,"children":65},{"id":64},"overview",[66],{"type":47,"value":67},"Overview",{"type":42,"tag":57,"props":69,"children":70},{},[71],{"type":47,"value":72},"Search across siloed company knowledge systems (Confluence, Jira, internal documentation) to find comprehensive answers to questions about internal concepts, systems, and terminology. This skill performs parallel searches across multiple sources and synthesizes results with proper citations.",{"type":42,"tag":57,"props":74,"children":75},{},[76,82],{"type":42,"tag":77,"props":78,"children":79},"strong",{},[80],{"type":47,"value":81},"Use this skill when:",{"type":47,"value":83}," Users ask about internal company knowledge that might be documented in Confluence pages, Jira tickets, or internal documentation.",{"type":42,"tag":85,"props":86,"children":87},"hr",{},[],{"type":42,"tag":50,"props":89,"children":91},{"id":90},"workflow",[92],{"type":47,"value":93},"Workflow",{"type":42,"tag":57,"props":95,"children":96},{},[97],{"type":47,"value":98},"Follow this 5-step process to provide comprehensive, well-cited answers:",{"type":42,"tag":100,"props":101,"children":103},"h3",{"id":102},"step-1-identify-search-query",[104],{"type":47,"value":105},"Step 1: Identify Search Query",{"type":42,"tag":57,"props":107,"children":108},{},[109],{"type":47,"value":110},"Extract the core search terms from the user's question.",{"type":42,"tag":57,"props":112,"children":113},{},[114],{"type":42,"tag":77,"props":115,"children":116},{},[117],{"type":47,"value":118},"Examples:",{"type":42,"tag":120,"props":121,"children":122},"ul",{},[123,129,134],{"type":42,"tag":124,"props":125,"children":126},"li",{},[127],{"type":47,"value":128},"User: \"Find everything about Stratus minions\" → Search: \"Stratus minions\"",{"type":42,"tag":124,"props":130,"children":131},{},[132],{"type":47,"value":133},"User: \"What do we know about the billing system?\" → Search: \"billing system\"",{"type":42,"tag":124,"props":135,"children":136},{},[137],{"type":47,"value":138},"User: \"Explain our deployment process\" → Search: \"deployment process\"",{"type":42,"tag":57,"props":140,"children":141},{},[142],{"type":42,"tag":77,"props":143,"children":144},{},[145],{"type":47,"value":146},"Consider:",{"type":42,"tag":120,"props":148,"children":149},{},[150,155,160],{"type":42,"tag":124,"props":151,"children":152},{},[153],{"type":47,"value":154},"Main topic or concept",{"type":42,"tag":124,"props":156,"children":157},{},[158],{"type":47,"value":159},"Any specific system\u002Fcomponent names",{"type":42,"tag":124,"props":161,"children":162},{},[163],{"type":47,"value":164},"Technical terms or jargon",{"type":42,"tag":85,"props":166,"children":167},{},[],{"type":42,"tag":100,"props":169,"children":171},{"id":170},"step-2-execute-parallel-search",[172],{"type":47,"value":173},"Step 2: Execute Parallel Search",{"type":42,"tag":57,"props":175,"children":176},{},[177],{"type":47,"value":178},"Search across all available knowledge sources simultaneously for comprehensive coverage.",{"type":42,"tag":180,"props":181,"children":183},"h4",{"id":182},"option-a-cross-system-search-recommended-first",[184],{"type":47,"value":185},"Option A: Cross-System Search (Recommended First)",{"type":42,"tag":57,"props":187,"children":188},{},[189,191,201],{"type":47,"value":190},"Use the ",{"type":42,"tag":77,"props":192,"children":193},{},[194],{"type":42,"tag":195,"props":196,"children":198},"code",{"className":197},[],[199],{"type":47,"value":200},"search",{"type":47,"value":202}," tool (Rovo Search) to search across Confluence and Jira at once:",{"type":42,"tag":204,"props":205,"children":209},"pre",{"className":206,"code":208,"language":47},[207],"language-text","search(\n  cloudId=\"...\",\n  query=\"[extracted search terms]\"\n)\n",[210],{"type":42,"tag":195,"props":211,"children":213},{"__ignoreMap":212},"",[214],{"type":47,"value":208},{"type":42,"tag":57,"props":216,"children":217},{},[218],{"type":42,"tag":77,"props":219,"children":220},{},[221],{"type":47,"value":222},"When to use:",{"type":42,"tag":120,"props":224,"children":225},{},[226,231,236],{"type":42,"tag":124,"props":227,"children":228},{},[229],{"type":47,"value":230},"Default approach for most queries",{"type":42,"tag":124,"props":232,"children":233},{},[234],{"type":47,"value":235},"When you don't know which system has the information",{"type":42,"tag":124,"props":237,"children":238},{},[239],{"type":47,"value":240},"Fastest way to get results from multiple sources",{"type":42,"tag":57,"props":242,"children":243},{},[244],{"type":42,"tag":77,"props":245,"children":246},{},[247],{"type":47,"value":248},"Example:",{"type":42,"tag":204,"props":250,"children":253},{"className":251,"code":252,"language":47},[207],"search(\n  cloudId=\"...\",\n  query=\"Stratus minions\"\n)\n",[254],{"type":42,"tag":195,"props":255,"children":256},{"__ignoreMap":212},[257],{"type":47,"value":252},{"type":42,"tag":57,"props":259,"children":260},{},[261],{"type":47,"value":262},"This returns results from both Confluence pages and Jira issues.",{"type":42,"tag":180,"props":264,"children":266},{"id":265},"option-b-targeted-confluence-search",[267],{"type":47,"value":268},"Option B: Targeted Confluence Search",{"type":42,"tag":57,"props":270,"children":271},{},[272,274,283],{"type":47,"value":273},"Use ",{"type":42,"tag":77,"props":275,"children":276},{},[277],{"type":42,"tag":195,"props":278,"children":280},{"className":279},[],[281],{"type":47,"value":282},"searchConfluenceUsingCql",{"type":47,"value":284}," when specifically searching Confluence:",{"type":42,"tag":204,"props":286,"children":289},{"className":287,"code":288,"language":47},[207],"searchConfluenceUsingCql(\n  cloudId=\"...\",\n  cql=\"text ~ 'search terms' OR title ~ 'search terms'\"\n)\n",[290],{"type":42,"tag":195,"props":291,"children":292},{"__ignoreMap":212},[293],{"type":47,"value":288},{"type":42,"tag":57,"props":295,"children":296},{},[297],{"type":42,"tag":77,"props":298,"children":299},{},[300],{"type":47,"value":222},{"type":42,"tag":120,"props":302,"children":303},{},[304,309,314],{"type":42,"tag":124,"props":305,"children":306},{},[307],{"type":47,"value":308},"User specifically mentions \"in Confluence\" or \"in our docs\"",{"type":42,"tag":124,"props":310,"children":311},{},[312],{"type":47,"value":313},"Cross-system search returns too many Jira results",{"type":42,"tag":124,"props":315,"children":316},{},[317],{"type":47,"value":318},"Looking for documentation rather than tickets",{"type":42,"tag":57,"props":320,"children":321},{},[322],{"type":42,"tag":77,"props":323,"children":324},{},[325],{"type":47,"value":326},"Example CQL patterns:",{"type":42,"tag":204,"props":328,"children":331},{"className":329,"code":330,"language":47},[207],"text ~ \"Stratus minions\"\ntext ~ \"authentication\" AND type = page\ntitle ~ \"deployment guide\"\n",[332],{"type":42,"tag":195,"props":333,"children":334},{"__ignoreMap":212},[335],{"type":47,"value":330},{"type":42,"tag":180,"props":337,"children":339},{"id":338},"option-c-targeted-jira-search",[340],{"type":47,"value":341},"Option C: Targeted Jira Search",{"type":42,"tag":57,"props":343,"children":344},{},[345,346,355],{"type":47,"value":273},{"type":42,"tag":77,"props":347,"children":348},{},[349],{"type":42,"tag":195,"props":350,"children":352},{"className":351},[],[353],{"type":47,"value":354},"searchJiraIssuesUsingJql",{"type":47,"value":356}," when specifically searching Jira:",{"type":42,"tag":204,"props":358,"children":361},{"className":359,"code":360,"language":47},[207],"searchJiraIssuesUsingJql(\n  cloudId=\"...\",\n  jql=\"text ~ 'search terms' OR summary ~ 'search terms'\"\n)\n",[362],{"type":42,"tag":195,"props":363,"children":364},{"__ignoreMap":212},[365],{"type":47,"value":360},{"type":42,"tag":57,"props":367,"children":368},{},[369],{"type":42,"tag":77,"props":370,"children":371},{},[372],{"type":47,"value":222},{"type":42,"tag":120,"props":374,"children":375},{},[376,381,386],{"type":42,"tag":124,"props":377,"children":378},{},[379],{"type":47,"value":380},"User mentions \"tickets\", \"issues\", or \"bugs\"",{"type":42,"tag":124,"props":382,"children":383},{},[384],{"type":47,"value":385},"Looking for historical problems or implementation details",{"type":42,"tag":124,"props":387,"children":388},{},[389],{"type":47,"value":390},"Cross-system search returns mostly documentation",{"type":42,"tag":57,"props":392,"children":393},{},[394],{"type":42,"tag":77,"props":395,"children":396},{},[397],{"type":47,"value":398},"Example JQL patterns:",{"type":42,"tag":204,"props":400,"children":403},{"className":401,"code":402,"language":47},[207],"text ~ \"Stratus minions\"\nsummary ~ \"authentication\" AND type = Bug\ntext ~ \"deployment\" AND created >= -90d\n",[404],{"type":42,"tag":195,"props":405,"children":406},{"__ignoreMap":212},[407],{"type":47,"value":402},{"type":42,"tag":180,"props":409,"children":411},{"id":410},"search-strategy",[412],{"type":47,"value":413},"Search Strategy",{"type":42,"tag":57,"props":415,"children":416},{},[417],{"type":42,"tag":77,"props":418,"children":419},{},[420],{"type":47,"value":421},"For most queries, use this sequence:",{"type":42,"tag":423,"props":424,"children":425},"ol",{},[426,443,448],{"type":42,"tag":124,"props":427,"children":428},{},[429,431,436,438],{"type":47,"value":430},"Start with ",{"type":42,"tag":195,"props":432,"children":434},{"className":433},[],[435],{"type":47,"value":200},{"type":47,"value":437}," (cross-system) - ",{"type":42,"tag":77,"props":439,"children":440},{},[441],{"type":47,"value":442},"always try this first",{"type":42,"tag":124,"props":444,"children":445},{},[446],{"type":47,"value":447},"If results are unclear, follow up with targeted searches",{"type":42,"tag":124,"props":449,"children":450},{},[451],{"type":47,"value":452},"If results mention specific pages\u002Ftickets, fetch them for details",{"type":42,"tag":85,"props":454,"children":455},{},[],{"type":42,"tag":100,"props":457,"children":459},{"id":458},"step-3-fetch-detailed-content",[460],{"type":47,"value":461},"Step 3: Fetch Detailed Content",{"type":42,"tag":57,"props":463,"children":464},{},[465],{"type":47,"value":466},"After identifying relevant sources, fetch full content for comprehensive answers.",{"type":42,"tag":180,"props":468,"children":470},{"id":469},"for-confluence-pages",[471],{"type":47,"value":472},"For Confluence Pages",{"type":42,"tag":57,"props":474,"children":475},{},[476],{"type":47,"value":477},"When search results reference Confluence pages:",{"type":42,"tag":204,"props":479,"children":482},{"className":480,"code":481,"language":47},[207],"getConfluencePage(\n  cloudId=\"...\",\n  pageId=\"[page ID from search results]\",\n  contentFormat=\"markdown\"\n)\n",[483],{"type":42,"tag":195,"props":484,"children":485},{"__ignoreMap":212},[486],{"type":47,"value":481},{"type":42,"tag":57,"props":488,"children":489},{},[490,495],{"type":42,"tag":77,"props":491,"children":492},{},[493],{"type":47,"value":494},"Returns:",{"type":47,"value":496}," Full page content in Markdown format",{"type":42,"tag":57,"props":498,"children":499},{},[500],{"type":42,"tag":77,"props":501,"children":502},{},[503],{"type":47,"value":504},"When to fetch:",{"type":42,"tag":120,"props":506,"children":507},{},[508,513,518],{"type":42,"tag":124,"props":509,"children":510},{},[511],{"type":47,"value":512},"Search result snippet is too brief",{"type":42,"tag":124,"props":514,"children":515},{},[516],{"type":47,"value":517},"Need complete context",{"type":42,"tag":124,"props":519,"children":520},{},[521],{"type":47,"value":522},"Page seems to be the primary documentation",{"type":42,"tag":180,"props":524,"children":526},{"id":525},"for-jira-issues",[527],{"type":47,"value":528},"For Jira Issues",{"type":42,"tag":57,"props":530,"children":531},{},[532],{"type":47,"value":533},"When search results reference Jira issues:",{"type":42,"tag":204,"props":535,"children":538},{"className":536,"code":537,"language":47},[207],"getJiraIssue(\n  cloudId=\"...\",\n  issueIdOrKey=\"PROJ-123\"\n)\n",[539],{"type":42,"tag":195,"props":540,"children":541},{"__ignoreMap":212},[542],{"type":47,"value":537},{"type":42,"tag":57,"props":544,"children":545},{},[546,550],{"type":42,"tag":77,"props":547,"children":548},{},[549],{"type":47,"value":494},{"type":47,"value":551}," Full issue details including description, comments, status",{"type":42,"tag":57,"props":553,"children":554},{},[555],{"type":42,"tag":77,"props":556,"children":557},{},[558],{"type":47,"value":504},{"type":42,"tag":120,"props":560,"children":561},{},[562,567,572],{"type":42,"tag":124,"props":563,"children":564},{},[565],{"type":47,"value":566},"Need to understand a reported bug or issue",{"type":42,"tag":124,"props":568,"children":569},{},[570],{"type":47,"value":571},"Search result doesn't show full context",{"type":42,"tag":124,"props":573,"children":574},{},[575],{"type":47,"value":576},"Issue contains important implementation notes",{"type":42,"tag":180,"props":578,"children":580},{"id":579},"prioritization",[581],{"type":47,"value":582},"Prioritization",{"type":42,"tag":57,"props":584,"children":585},{},[586],{"type":42,"tag":77,"props":587,"children":588},{},[589],{"type":47,"value":590},"Fetch in this order:",{"type":42,"tag":423,"props":592,"children":593},{},[594,604,614],{"type":42,"tag":124,"props":595,"children":596},{},[597,602],{"type":42,"tag":77,"props":598,"children":599},{},[600],{"type":47,"value":601},"Official documentation pages",{"type":47,"value":603}," (Confluence pages with \"guide\", \"documentation\", \"overview\" in title)",{"type":42,"tag":124,"props":605,"children":606},{},[607,612],{"type":42,"tag":77,"props":608,"children":609},{},[610],{"type":47,"value":611},"Recent\u002Frelevant issues",{"type":47,"value":613}," (Jira tickets that are relevant and recent)",{"type":42,"tag":124,"props":615,"children":616},{},[617,622],{"type":42,"tag":77,"props":618,"children":619},{},[620],{"type":47,"value":621},"Additional context",{"type":47,"value":623}," (related pages mentioned in initial results)",{"type":42,"tag":57,"props":625,"children":626},{},[627,632],{"type":42,"tag":77,"props":628,"children":629},{},[630],{"type":47,"value":631},"Don't fetch everything",{"type":47,"value":633}," - be selective based on relevance to user's question.",{"type":42,"tag":85,"props":635,"children":636},{},[],{"type":42,"tag":100,"props":638,"children":640},{"id":639},"step-4-synthesize-results",[641],{"type":47,"value":642},"Step 4: Synthesize Results",{"type":42,"tag":57,"props":644,"children":645},{},[646],{"type":47,"value":647},"Combine information from multiple sources into a coherent answer.",{"type":42,"tag":180,"props":649,"children":651},{"id":650},"synthesis-guidelines",[652],{"type":47,"value":653},"Synthesis Guidelines",{"type":42,"tag":57,"props":655,"children":656},{},[657],{"type":42,"tag":77,"props":658,"children":659},{},[660],{"type":47,"value":661},"Structure your answer:",{"type":42,"tag":423,"props":663,"children":664},{},[665,686,707,736,757],{"type":42,"tag":124,"props":666,"children":667},{},[668,673],{"type":42,"tag":77,"props":669,"children":670},{},[671],{"type":47,"value":672},"Direct Answer First",{"type":42,"tag":120,"props":674,"children":675},{},[676,681],{"type":42,"tag":124,"props":677,"children":678},{},[679],{"type":47,"value":680},"Start with a clear, concise answer to the question",{"type":42,"tag":124,"props":682,"children":683},{},[684],{"type":47,"value":685},"\"Stratus minions are...\"",{"type":42,"tag":124,"props":687,"children":688},{},[689,694],{"type":42,"tag":77,"props":690,"children":691},{},[692],{"type":47,"value":693},"Detailed Explanation",{"type":42,"tag":120,"props":695,"children":696},{},[697,702],{"type":42,"tag":124,"props":698,"children":699},{},[700],{"type":47,"value":701},"Provide comprehensive details from all sources",{"type":42,"tag":124,"props":703,"children":704},{},[705],{"type":47,"value":706},"Organize by topic, not by source",{"type":42,"tag":124,"props":708,"children":709},{},[710,715],{"type":42,"tag":77,"props":711,"children":712},{},[713],{"type":47,"value":714},"Source Attribution",{"type":42,"tag":120,"props":716,"children":717},{},[718,723],{"type":42,"tag":124,"props":719,"children":720},{},[721],{"type":47,"value":722},"Note where each piece of information comes from",{"type":42,"tag":124,"props":724,"children":725},{},[726,728,734],{"type":47,"value":727},"Format: \"According to ",{"type":42,"tag":729,"props":730,"children":731},"span",{},[732],{"type":47,"value":733},"source",{"type":47,"value":735},", ...\"",{"type":42,"tag":124,"props":737,"children":738},{},[739,744],{"type":42,"tag":77,"props":740,"children":741},{},[742],{"type":47,"value":743},"Highlight Discrepancies",{"type":42,"tag":120,"props":745,"children":746},{},[747,752],{"type":42,"tag":124,"props":748,"children":749},{},[750],{"type":47,"value":751},"If sources conflict, note it explicitly",{"type":42,"tag":124,"props":753,"children":754},{},[755],{"type":47,"value":756},"Example: \"The Confluence documentation states X, however Jira ticket PROJ-123 indicates that due to bug Y, the behavior is actually Z\"",{"type":42,"tag":124,"props":758,"children":759},{},[760,765],{"type":42,"tag":77,"props":761,"children":762},{},[763],{"type":47,"value":764},"Provide Context",{"type":42,"tag":120,"props":766,"children":767},{},[768,773],{"type":42,"tag":124,"props":769,"children":770},{},[771],{"type":47,"value":772},"Mention if information is outdated",{"type":42,"tag":124,"props":774,"children":775},{},[776],{"type":47,"value":777},"Note if a feature is deprecated or in development",{"type":42,"tag":180,"props":779,"children":781},{"id":780},"synthesis-patterns",[782],{"type":47,"value":783},"Synthesis Patterns",{"type":42,"tag":57,"props":785,"children":786},{},[787],{"type":42,"tag":77,"props":788,"children":789},{},[790],{"type":47,"value":791},"Pattern 1: Multiple sources agree",{"type":42,"tag":204,"props":793,"children":796},{"className":794,"code":795,"language":47},[207],"Stratus minions are background worker processes that handle async tasks.\n\nAccording to the Confluence documentation, they process jobs from the queue and \ncan be scaled horizontally. This is confirmed by several Jira tickets (PROJ-145, \nPROJ-203) which discuss minion configuration and scaling strategies.\n",[797],{"type":42,"tag":195,"props":798,"children":799},{"__ignoreMap":212},[800],{"type":47,"value":795},{"type":42,"tag":57,"props":802,"children":803},{},[804],{"type":42,"tag":77,"props":805,"children":806},{},[807],{"type":47,"value":808},"Pattern 2: Sources provide different aspects",{"type":42,"tag":204,"props":810,"children":813},{"className":811,"code":812,"language":47},[207],"The billing system has two main components:\n\n**Payment Processing** (from Confluence \"Billing Architecture\" page)\n- Handles credit card transactions\n- Integrates with Stripe API\n- Runs nightly reconciliation\n\n**Invoice Generation** (from Jira PROJ-189)\n- Creates monthly invoices\n- Note: Currently has a bug where tax calculation fails for EU customers\n- Fix planned for Q1 2024\n",[814],{"type":42,"tag":195,"props":815,"children":816},{"__ignoreMap":212},[817],{"type":47,"value":812},{"type":42,"tag":57,"props":819,"children":820},{},[821],{"type":42,"tag":77,"props":822,"children":823},{},[824],{"type":47,"value":825},"Pattern 3: Conflicting information",{"type":42,"tag":204,"props":827,"children":830},{"className":828,"code":829,"language":47},[207],"There is conflicting information about the authentication timeout:\n\n- **Official Documentation** (Confluence) states: 30-minute session timeout\n- **Implementation Reality** (Jira PROJ-456, filed Oct 2023): Actual timeout is \n  15 minutes due to load balancer configuration\n- **Status:** Engineering team aware, fix planned but no timeline yet\n\nCurrent behavior: Expect 15-minute timeout despite docs saying 30 minutes.\n",[831],{"type":42,"tag":195,"props":832,"children":833},{"__ignoreMap":212},[834],{"type":47,"value":829},{"type":42,"tag":57,"props":836,"children":837},{},[838],{"type":42,"tag":77,"props":839,"children":840},{},[841],{"type":47,"value":842},"Pattern 4: Incomplete information",{"type":42,"tag":204,"props":844,"children":847},{"className":845,"code":846,"language":47},[207],"Based on available documentation:\n\n[What we know about deployment process from Confluence and Jira]\n\nHowever, I couldn't find information about:\n- Rollback procedures\n- Database migration handling\n\nYou may want to check with the DevOps team or search for additional documentation.\n",[848],{"type":42,"tag":195,"props":849,"children":850},{"__ignoreMap":212},[851],{"type":47,"value":846},{"type":42,"tag":85,"props":853,"children":854},{},[],{"type":42,"tag":100,"props":856,"children":858},{"id":857},"step-5-provide-citations",[859],{"type":47,"value":860},"Step 5: Provide Citations",{"type":42,"tag":57,"props":862,"children":863},{},[864],{"type":47,"value":865},"Always include links to source materials so users can explore further.",{"type":42,"tag":180,"props":867,"children":869},{"id":868},"citation-format",[870],{"type":47,"value":871},"Citation Format",{"type":42,"tag":57,"props":873,"children":874},{},[875],{"type":42,"tag":77,"props":876,"children":877},{},[878],{"type":47,"value":879},"For Confluence pages:",{"type":42,"tag":204,"props":881,"children":884},{"className":882,"code":883,"language":47},[207],"**Source:** [Page Title](https:\u002F\u002Fyoursite.atlassian.net\u002Fwiki\u002Fspaces\u002FSPACE\u002Fpages\u002F123456)\n",[885],{"type":42,"tag":195,"props":886,"children":887},{"__ignoreMap":212},[888],{"type":47,"value":883},{"type":42,"tag":57,"props":890,"children":891},{},[892],{"type":42,"tag":77,"props":893,"children":894},{},[895],{"type":47,"value":896},"For Jira issues:",{"type":42,"tag":204,"props":898,"children":901},{"className":899,"code":900,"language":47},[207],"**Related Tickets:**\n- [PROJ-123](https:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-123) - Brief description\n- [PROJ-456](https:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-456) - Brief description\n",[902],{"type":42,"tag":195,"props":903,"children":904},{"__ignoreMap":212},[905],{"type":47,"value":900},{"type":42,"tag":57,"props":907,"children":908},{},[909],{"type":42,"tag":77,"props":910,"children":911},{},[912],{"type":47,"value":913},"Complete citation section:",{"type":42,"tag":204,"props":915,"children":918},{"className":916,"code":917,"language":47},[207],"## Sources\n\n**Confluence Documentation:**\n- [Stratus Architecture Guide](https:\u002F\u002Fyoursite.atlassian.net\u002Fwiki\u002Fspaces\u002FDOCS\u002Fpages\u002F12345)\n- [Minion Configuration](https:\u002F\u002Fyoursite.atlassian.net\u002Fwiki\u002Fspaces\u002FDEVOPS\u002Fpages\u002F67890)\n\n**Jira Issues:**\n- [PROJ-145](https:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-145) - Minion scaling implementation\n- [PROJ-203](https:\u002F\u002Fyoursite.atlassian.net\u002Fbrowse\u002FPROJ-203) - Performance optimization\n\n**Additional Resources:**\n- [Internal architecture doc link if found]\n",[919],{"type":42,"tag":195,"props":920,"children":921},{"__ignoreMap":212},[922],{"type":47,"value":917},{"type":42,"tag":85,"props":924,"children":925},{},[],{"type":42,"tag":50,"props":927,"children":929},{"id":928},"search-best-practices",[930],{"type":47,"value":931},"Search Best Practices",{"type":42,"tag":100,"props":933,"children":935},{"id":934},"effective-search-terms",[936],{"type":47,"value":937},"Effective Search Terms",{"type":42,"tag":57,"props":939,"children":940},{},[941],{"type":42,"tag":77,"props":942,"children":943},{},[944],{"type":47,"value":945},"Do:",{"type":42,"tag":120,"props":947,"children":948},{},[949,954,959,964],{"type":42,"tag":124,"props":950,"children":951},{},[952],{"type":47,"value":953},"✅ Use specific technical terms: \"OAuth authentication flow\"",{"type":42,"tag":124,"props":955,"children":956},{},[957],{"type":47,"value":958},"✅ Include system names: \"Stratus minions\"",{"type":42,"tag":124,"props":960,"children":961},{},[962],{"type":47,"value":963},"✅ Use acronyms if they're common: \"API rate limiting\"",{"type":42,"tag":124,"props":965,"children":966},{},[967],{"type":47,"value":968},"✅ Try variations if first search fails: \"deploy process\" → \"deployment pipeline\"",{"type":42,"tag":57,"props":970,"children":971},{},[972],{"type":42,"tag":77,"props":973,"children":974},{},[975],{"type":47,"value":976},"Don't:",{"type":42,"tag":120,"props":978,"children":979},{},[980,985,990],{"type":42,"tag":124,"props":981,"children":982},{},[983],{"type":47,"value":984},"❌ Be too generic: \"how things work\"",{"type":42,"tag":124,"props":986,"children":987},{},[988],{"type":47,"value":989},"❌ Use full sentences: Use key terms instead",{"type":42,"tag":124,"props":991,"children":992},{},[993],{"type":47,"value":994},"❌ Include filler words: \"the\", \"our\", \"about\"",{"type":42,"tag":100,"props":996,"children":998},{"id":997},"search-result-quality",[999],{"type":47,"value":1000},"Search Result Quality",{"type":42,"tag":57,"props":1002,"children":1003},{},[1004],{"type":42,"tag":77,"props":1005,"children":1006},{},[1007],{"type":47,"value":1008},"Good results:",{"type":42,"tag":120,"props":1010,"children":1011},{},[1012,1017,1022,1027],{"type":42,"tag":124,"props":1013,"children":1014},{},[1015],{"type":47,"value":1016},"Recent documentation (\u003C 1 year old)",{"type":42,"tag":124,"props":1018,"children":1019},{},[1020],{"type":47,"value":1021},"Official\u002Fcanonical pages (titled \"Guide\", \"Documentation\", \"Overview\")",{"type":42,"tag":124,"props":1023,"children":1024},{},[1025],{"type":47,"value":1026},"Multiple sources confirming same information",{"type":42,"tag":124,"props":1028,"children":1029},{},[1030],{"type":47,"value":1031},"Detailed implementation notes",{"type":42,"tag":57,"props":1033,"children":1034},{},[1035],{"type":42,"tag":77,"props":1036,"children":1037},{},[1038],{"type":47,"value":1039},"Questionable results:",{"type":42,"tag":120,"props":1041,"children":1042},{},[1043,1048,1053,1058],{"type":42,"tag":124,"props":1044,"children":1045},{},[1046],{"type":47,"value":1047},"Very old tickets (> 2 years, may be outdated)",{"type":42,"tag":124,"props":1049,"children":1050},{},[1051],{"type":47,"value":1052},"Duplicate or conflicting information",{"type":42,"tag":124,"props":1054,"children":1055},{},[1056],{"type":47,"value":1057},"Draft pages or work-in-progress docs",{"type":42,"tag":124,"props":1059,"children":1060},{},[1061],{"type":47,"value":1062},"Personal pages (may not be official)",{"type":42,"tag":57,"props":1064,"children":1065},{},[1066],{"type":42,"tag":77,"props":1067,"children":1068},{},[1069],{"type":47,"value":1070},"When results are poor:",{"type":42,"tag":120,"props":1072,"children":1073},{},[1074,1079,1084,1089],{"type":42,"tag":124,"props":1075,"children":1076},{},[1077],{"type":47,"value":1078},"Try different search terms",{"type":42,"tag":124,"props":1080,"children":1081},{},[1082],{"type":47,"value":1083},"Expand search to include related concepts",{"type":42,"tag":124,"props":1085,"children":1086},{},[1087],{"type":47,"value":1088},"Search for specific error messages or codes",{"type":42,"tag":124,"props":1090,"children":1091},{},[1092],{"type":47,"value":1093},"Ask user for more context",{"type":42,"tag":85,"props":1095,"children":1096},{},[],{"type":42,"tag":50,"props":1098,"children":1100},{"id":1099},"handling-common-scenarios",[1101],{"type":47,"value":1102},"Handling Common Scenarios",{"type":42,"tag":100,"props":1104,"children":1106},{"id":1105},"scenario-1-no-results-found",[1107],{"type":47,"value":1108},"Scenario 1: No Results Found",{"type":42,"tag":57,"props":1110,"children":1111},{},[1112],{"type":47,"value":1113},"If searches return no results:",{"type":42,"tag":204,"props":1115,"children":1118},{"className":1116,"code":1117,"language":47},[207],"I searched across Confluence and Jira but couldn't find information about \"[topic]\".\n\nThis could mean:\n- The concept hasn't been documented yet\n- It might be called something else (can you provide alternative names?)\n- Documentation might be in a different system I don't have access to\n\nWould you like me to:\n1. Try searching with different terms?\n2. Search for related concepts?\n3. Look for mentions in recent Jira tickets?\n",[1119],{"type":42,"tag":195,"props":1120,"children":1121},{"__ignoreMap":212},[1122],{"type":47,"value":1117},{"type":42,"tag":100,"props":1124,"children":1126},{"id":1125},"scenario-2-too-many-results",[1127],{"type":47,"value":1128},"Scenario 2: Too Many Results",{"type":42,"tag":57,"props":1130,"children":1131},{},[1132],{"type":47,"value":1133},"If search returns 50+ results:",{"type":42,"tag":120,"props":1135,"children":1136},{},[1137,1142,1147,1152],{"type":42,"tag":124,"props":1138,"children":1139},{},[1140],{"type":47,"value":1141},"Focus on most recent and most relevant (top 10-15)",{"type":42,"tag":124,"props":1143,"children":1144},{},[1145],{"type":47,"value":1146},"Prioritize official documentation over random tickets",{"type":42,"tag":124,"props":1148,"children":1149},{},[1150],{"type":47,"value":1151},"Group similar results: \"I found 15 tickets related to authentication bugs...\"",{"type":42,"tag":124,"props":1153,"children":1154},{},[1155,1157,1162],{"type":47,"value":1156},"Offer to narrow search: \"Would you like me to focus on ",{"type":42,"tag":729,"props":1158,"children":1159},{},[1160],{"type":47,"value":1161},"specific aspect",{"type":47,"value":1163},"?\"",{"type":42,"tag":100,"props":1165,"children":1167},{"id":1166},"scenario-3-ambiguous-query",[1168],{"type":47,"value":1169},"Scenario 3: Ambiguous Query",{"type":42,"tag":57,"props":1171,"children":1172},{},[1173],{"type":47,"value":1174},"If the user's question is vague:",{"type":42,"tag":204,"props":1176,"children":1179},{"className":1177,"code":1178,"language":47},[207],"I found information about several topics related to \"[term]\":\n1. [Topic A] - from Confluence page X\n2. [Topic B] - from Jira tickets Y, Z\n3. [Topic C] - from documentation W\n\nWhich aspect are you most interested in?\n",[1180],{"type":42,"tag":195,"props":1181,"children":1182},{"__ignoreMap":212},[1183],{"type":47,"value":1178},{"type":42,"tag":100,"props":1185,"children":1187},{"id":1186},"scenario-4-outdated-information",[1188],{"type":47,"value":1189},"Scenario 4: Outdated Information",{"type":42,"tag":57,"props":1191,"children":1192},{},[1193],{"type":47,"value":1194},"If you find information is old:",{"type":42,"tag":204,"props":1196,"children":1199},{"className":1197,"code":1198,"language":47},[207],"I found documentation about [topic], but note that it's from [date] and may be outdated.\n\n[Provide the information anyway]\n\nYou may want to verify this is still current, especially if it's from more than \na year ago.\n",[1200],{"type":42,"tag":195,"props":1201,"children":1202},{"__ignoreMap":212},[1203],{"type":47,"value":1198},{"type":42,"tag":100,"props":1205,"children":1207},{"id":1206},"scenario-5-restrictedprivate-content",[1208],{"type":47,"value":1209},"Scenario 5: Restricted\u002FPrivate Content",{"type":42,"tag":57,"props":1211,"children":1212},{},[1213],{"type":47,"value":1214},"If search returns inaccessible content:",{"type":42,"tag":204,"props":1216,"children":1219},{"className":1217,"code":1218,"language":47},[207],"Search results mention [topic] in the following locations, but I don't have \naccess to view the full content:\n- Confluence page: [title] (Space: [SPACE])\n- Jira issue: PROJ-123\n\nYou may need to access these directly or check your permissions.\n",[1220],{"type":42,"tag":195,"props":1221,"children":1222},{"__ignoreMap":212},[1223],{"type":47,"value":1218},{"type":42,"tag":85,"props":1225,"children":1226},{},[],{"type":42,"tag":50,"props":1228,"children":1230},{"id":1229},"examples",[1231],{"type":47,"value":1232},"Examples",{"type":42,"tag":100,"props":1234,"children":1236},{"id":1235},"example-1-clear-documentation-available",[1237],{"type":47,"value":1238},"Example 1: Clear Documentation Available",{"type":42,"tag":57,"props":1240,"children":1241},{},[1242,1247],{"type":42,"tag":77,"props":1243,"children":1244},{},[1245],{"type":47,"value":1246},"User:",{"type":47,"value":1248}," \"What are Stratus minions?\"",{"type":42,"tag":57,"props":1250,"children":1251},{},[1252],{"type":42,"tag":77,"props":1253,"children":1254},{},[1255],{"type":47,"value":1256},"Process:",{"type":42,"tag":423,"props":1258,"children":1259},{},[1260,1271,1276,1281,1286],{"type":42,"tag":124,"props":1261,"children":1262},{},[1263,1265],{"type":47,"value":1264},"Search: ",{"type":42,"tag":195,"props":1266,"children":1268},{"className":1267},[],[1269],{"type":47,"value":1270},"search(cloudId=\"...\", query=\"Stratus minions\")",{"type":42,"tag":124,"props":1272,"children":1273},{},[1274],{"type":47,"value":1275},"Find: Confluence page \"Stratus Architecture\" + 3 Jira tickets",{"type":42,"tag":124,"props":1277,"children":1278},{},[1279],{"type":47,"value":1280},"Fetch: Get full Confluence page content",{"type":42,"tag":124,"props":1282,"children":1283},{},[1284],{"type":47,"value":1285},"Synthesize: Combine architectural overview with implementation details from tickets",{"type":42,"tag":124,"props":1287,"children":1288},{},[1289],{"type":47,"value":1290},"Cite: Provide links to all sources",{"type":42,"tag":57,"props":1292,"children":1293},{},[1294],{"type":42,"tag":77,"props":1295,"children":1296},{},[1297],{"type":47,"value":1298},"Answer:",{"type":42,"tag":204,"props":1300,"children":1303},{"className":1301,"code":1302,"language":47},[207],"Stratus minions are background worker processes that handle asynchronous task \nprocessing in the Stratus system.\n\n**Key Characteristics:**\n- Run independently from web servers\n- Process jobs from a Redis queue\n- Can be scaled horizontally for increased throughput\n- Handle tasks like email sending, report generation, and data processing\n\n**Architecture:**\nAccording to the Stratus Architecture documentation, minions follow a \nworker-queue pattern where:\n1. Web application enqueues tasks\n2. Minions poll the queue for work\n3. Tasks are processed asynchronously\n4. Results are stored in the database\n\n**Implementation Notes:**\nFrom Jira ticket PROJ-203, the current deployment runs 5 minion instances, \nwith plans to scale to 10 for handling increased load.\n\n## Sources\n- [Stratus Architecture Guide](link)\n- [PROJ-203](link) - Minion scaling implementation\n",[1304],{"type":42,"tag":195,"props":1305,"children":1306},{"__ignoreMap":212},[1307],{"type":47,"value":1302},{"type":42,"tag":100,"props":1309,"children":1311},{"id":1310},"example-2-conflicting-information",[1312],{"type":47,"value":1313},"Example 2: Conflicting Information",{"type":42,"tag":57,"props":1315,"children":1316},{},[1317,1321],{"type":42,"tag":77,"props":1318,"children":1319},{},[1320],{"type":47,"value":1246},{"type":47,"value":1322}," \"How long is our session timeout?\"",{"type":42,"tag":57,"props":1324,"children":1325},{},[1326],{"type":42,"tag":77,"props":1327,"children":1328},{},[1329],{"type":47,"value":1256},{"type":42,"tag":423,"props":1331,"children":1332},{},[1333,1338,1343,1348],{"type":42,"tag":124,"props":1334,"children":1335},{},[1336],{"type":47,"value":1337},"Search across Confluence and Jira",{"type":42,"tag":124,"props":1339,"children":1340},{},[1341],{"type":47,"value":1342},"Find: Docs say 30 min, but ticket reports actual timeout is 15 min",{"type":42,"tag":124,"props":1344,"children":1345},{},[1346],{"type":47,"value":1347},"Fetch both sources for complete context",{"type":42,"tag":124,"props":1349,"children":1350},{},[1351],{"type":47,"value":1352},"Clearly note the discrepancy",{"type":42,"tag":57,"props":1354,"children":1355},{},[1356],{"type":42,"tag":77,"props":1357,"children":1358},{},[1359],{"type":47,"value":1298},{"type":42,"tag":204,"props":1361,"children":1364},{"className":1362,"code":1363,"language":47},[207],"There is a discrepancy between documented and actual behavior:\n\n**Official Documentation** (Security Guidelines):\nSession timeout is configured for 30 minutes of inactivity.\n\n**Actual Behavior** (PROJ-456, reported Oct 2023):\nUsers are being logged out after 15 minutes due to a load balancer configuration \nthat overrides the application setting.\n\n**Current Status:**\nThe engineering team is aware of this issue. The load balancer timeout needs to \nbe adjusted to match the application setting. No fix timeline has been set.\n\n**Recommendation:** Plan for 15-minute timeout until this is resolved.\n\n## Sources\n- [Security Guidelines](link) - Official documentation\n- [PROJ-456](link) - Timeout discrepancy bug report\n",[1365],{"type":42,"tag":195,"props":1366,"children":1367},{"__ignoreMap":212},[1368],{"type":47,"value":1363},{"type":42,"tag":100,"props":1370,"children":1372},{"id":1371},"example-3-partial-information",[1373],{"type":47,"value":1374},"Example 3: Partial Information",{"type":42,"tag":57,"props":1376,"children":1377},{},[1378,1382],{"type":42,"tag":77,"props":1379,"children":1380},{},[1381],{"type":47,"value":1246},{"type":47,"value":1383}," \"Explain our deployment process\"",{"type":42,"tag":57,"props":1385,"children":1386},{},[1387],{"type":42,"tag":77,"props":1388,"children":1389},{},[1390],{"type":47,"value":1256},{"type":42,"tag":423,"props":1392,"children":1393},{},[1394,1399,1404],{"type":42,"tag":124,"props":1395,"children":1396},{},[1397],{"type":47,"value":1398},"Search finds some information but not complete",{"type":42,"tag":124,"props":1400,"children":1401},{},[1402],{"type":47,"value":1403},"Synthesize what is available",{"type":42,"tag":124,"props":1405,"children":1406},{},[1407],{"type":47,"value":1408},"Note gaps in documentation",{"type":42,"tag":57,"props":1410,"children":1411},{},[1412],{"type":42,"tag":77,"props":1413,"children":1414},{},[1415],{"type":47,"value":1298},{"type":42,"tag":204,"props":1417,"children":1420},{"className":1418,"code":1419,"language":47},[207],"Based on available documentation, here's what I found about the deployment process:\n\n**Build Phase** (from Confluence \"CI\u002FCD Guide\"):\n1. Code pushed to main branch triggers GitHub Actions\n2. Automated tests run (unit, integration)\n3. Docker image built and pushed to registry\n\n**Deployment Phase** (from Jira PROJ-789):\n4. Staging deployment happens automatically\n5. Manual approval required for production\n6. Blue-green deployment strategy used\n\n**Gaps in Documentation:**\nI couldn't find documented information about:\n- Rollback procedures\n- Database migration handling\n- Post-deployment verification steps\n\nThese details may exist in tribal knowledge or need to be documented.\n\n## Sources\n- [CI\u002FCD Guide](link)\n- [PROJ-789](link) - Deployment pipeline implementation\n\nWould you like me to search for more specific aspects of deployment?\n",[1421],{"type":42,"tag":195,"props":1422,"children":1423},{"__ignoreMap":212},[1424],{"type":47,"value":1419},{"type":42,"tag":85,"props":1426,"children":1427},{},[],{"type":42,"tag":50,"props":1429,"children":1431},{"id":1430},"tips-for-high-quality-answers",[1432],{"type":47,"value":1433},"Tips for High-Quality Answers",{"type":42,"tag":100,"props":1435,"children":1437},{"id":1436},"do",[1438],{"type":47,"value":945},{"type":42,"tag":57,"props":1440,"children":1441},{},[1442],{"type":47,"value":1443},"✅ Always search before answering (don't rely on general knowledge)\n✅ Cite all sources with links\n✅ Note discrepancies explicitly\n✅ Mention when information is old\n✅ Provide context and examples\n✅ Structure answers clearly with headers\n✅ Link to related documentation",{"type":42,"tag":100,"props":1445,"children":1447},{"id":1446},"dont",[1448],{"type":47,"value":976},{"type":42,"tag":57,"props":1450,"children":1451},{},[1452],{"type":47,"value":1453},"❌ Assume general knowledge applies to this company\n❌ Make up information if search returns nothing\n❌ Ignore conflicting information\n❌ Quote entire documents (summarize instead)\n❌ Overwhelm with too many sources (curate top 5-10)\n❌ Forget to fetch details when snippets are insufficient",{"type":42,"tag":85,"props":1455,"children":1456},{},[],{"type":42,"tag":50,"props":1458,"children":1460},{"id":1459},"when-not-to-use-this-skill",[1461],{"type":47,"value":1462},"When NOT to Use This Skill",{"type":42,"tag":57,"props":1464,"children":1465},{},[1466,1468,1473],{"type":47,"value":1467},"This skill is for ",{"type":42,"tag":77,"props":1469,"children":1470},{},[1471],{"type":47,"value":1472},"internal company knowledge only",{"type":47,"value":1474},". Do NOT use for:",{"type":42,"tag":57,"props":1476,"children":1477},{},[1478],{"type":47,"value":1479},"❌ General technology questions (use your training knowledge)\n❌ External documentation (use web_search)\n❌ Company-agnostic questions\n❌ Questions about other companies\n❌ Current events or news",{"type":42,"tag":57,"props":1481,"children":1482},{},[1483],{"type":42,"tag":77,"props":1484,"children":1485},{},[1486],{"type":47,"value":1487},"Examples of what NOT to use this skill for:",{"type":42,"tag":120,"props":1489,"children":1490},{},[1491,1496,1501,1506],{"type":42,"tag":124,"props":1492,"children":1493},{},[1494],{"type":47,"value":1495},"\"What is machine learning?\" (general knowledge)",{"type":42,"tag":124,"props":1497,"children":1498},{},[1499],{"type":47,"value":1500},"\"How does React work?\" (external documentation)",{"type":42,"tag":124,"props":1502,"children":1503},{},[1504],{"type":47,"value":1505},"\"What's the weather?\" (not knowledge search)",{"type":42,"tag":124,"props":1507,"children":1508},{},[1509],{"type":47,"value":1510},"\"Find a restaurant\" (not work-related)",{"type":42,"tag":85,"props":1512,"children":1513},{},[],{"type":42,"tag":50,"props":1515,"children":1517},{"id":1516},"quick-reference",[1518],{"type":47,"value":1519},"Quick Reference",{"type":42,"tag":57,"props":1521,"children":1522},{},[1523,1528,1530,1536],{"type":42,"tag":77,"props":1524,"children":1525},{},[1526],{"type":47,"value":1527},"Primary tool:",{"type":47,"value":1529}," ",{"type":42,"tag":195,"props":1531,"children":1533},{"className":1532},[],[1534],{"type":47,"value":1535},"search(cloudId, query)",{"type":47,"value":1537}," - Use this first, always",{"type":42,"tag":57,"props":1539,"children":1540},{},[1541],{"type":42,"tag":77,"props":1542,"children":1543},{},[1544],{"type":47,"value":1545},"Follow-up tools:",{"type":42,"tag":120,"props":1547,"children":1548},{},[1549,1560,1571,1582],{"type":42,"tag":124,"props":1550,"children":1551},{},[1552,1558],{"type":42,"tag":195,"props":1553,"children":1555},{"className":1554},[],[1556],{"type":47,"value":1557},"getConfluencePage(cloudId, pageId, contentFormat)",{"type":47,"value":1559}," - Get full page content",{"type":42,"tag":124,"props":1561,"children":1562},{},[1563,1569],{"type":42,"tag":195,"props":1564,"children":1566},{"className":1565},[],[1567],{"type":47,"value":1568},"getJiraIssue(cloudId, issueIdOrKey)",{"type":47,"value":1570}," - Get full issue details",{"type":42,"tag":124,"props":1572,"children":1573},{},[1574,1580],{"type":42,"tag":195,"props":1575,"children":1577},{"className":1576},[],[1578],{"type":47,"value":1579},"searchConfluenceUsingCql(cloudId, cql)",{"type":47,"value":1581}," - Targeted Confluence search",{"type":42,"tag":124,"props":1583,"children":1584},{},[1585,1591],{"type":42,"tag":195,"props":1586,"children":1588},{"className":1587},[],[1589],{"type":47,"value":1590},"searchJiraIssuesUsingJql(cloudId, jql)",{"type":47,"value":1592}," - Targeted Jira search",{"type":42,"tag":57,"props":1594,"children":1595},{},[1596],{"type":42,"tag":77,"props":1597,"children":1598},{},[1599],{"type":47,"value":1600},"Answer structure:",{"type":42,"tag":423,"props":1602,"children":1603},{},[1604,1609,1614,1619,1624],{"type":42,"tag":124,"props":1605,"children":1606},{},[1607],{"type":47,"value":1608},"Direct answer",{"type":42,"tag":124,"props":1610,"children":1611},{},[1612],{"type":47,"value":1613},"Detailed explanation",{"type":42,"tag":124,"props":1615,"children":1616},{},[1617],{"type":47,"value":1618},"Source attribution",{"type":42,"tag":124,"props":1620,"children":1621},{},[1622],{"type":47,"value":1623},"Discrepancies (if any)",{"type":42,"tag":124,"props":1625,"children":1626},{},[1627],{"type":47,"value":1628},"Citations with links",{"type":42,"tag":57,"props":1630,"children":1631},{},[1632],{"type":42,"tag":77,"props":1633,"children":1634},{},[1635],{"type":47,"value":1636},"Remember:",{"type":42,"tag":120,"props":1638,"children":1639},{},[1640,1645,1650,1655,1660],{"type":42,"tag":124,"props":1641,"children":1642},{},[1643],{"type":47,"value":1644},"Parallel search > Sequential search",{"type":42,"tag":124,"props":1646,"children":1647},{},[1648],{"type":47,"value":1649},"Synthesize, don't just list",{"type":42,"tag":124,"props":1651,"children":1652},{},[1653],{"type":47,"value":1654},"Always cite sources",{"type":42,"tag":124,"props":1656,"children":1657},{},[1658],{"type":47,"value":1659},"Note conflicts explicitly",{"type":42,"tag":124,"props":1661,"children":1662},{},[1663],{"type":47,"value":1664},"Be clear about gaps in documentation",{"items":1666,"total":1788},[1667,1686,1702,1714,1734,1756,1776],{"slug":1668,"name":1668,"fn":1669,"description":1670,"org":1671,"tags":1672,"stars":25,"repoUrl":26,"updatedAt":1685},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1673,1676,1679,1682],{"name":1674,"slug":1675,"type":15},"Accessibility","accessibility",{"name":1677,"slug":1678,"type":15},"Charts","charts",{"name":1680,"slug":1681,"type":15},"Data Visualization","data-visualization",{"name":1683,"slug":1684,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":1687,"name":1687,"fn":1688,"description":1689,"org":1690,"tags":1691,"stars":25,"repoUrl":26,"updatedAt":1701},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1692,1695,1698],{"name":1693,"slug":1694,"type":15},"Agents","agents",{"name":1696,"slug":1697,"type":15},"Browser Automation","browser-automation",{"name":1699,"slug":1700,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1703,"name":1703,"fn":1704,"description":1705,"org":1706,"tags":1707,"stars":25,"repoUrl":26,"updatedAt":1713},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1708,1709,1712],{"name":1696,"slug":1697,"type":15},{"name":1710,"slug":1711,"type":15},"Local Development","local-development",{"name":1699,"slug":1700,"type":15},"2026-04-06T18:41:17.526867",{"slug":1715,"name":1715,"fn":1716,"description":1717,"org":1718,"tags":1719,"stars":25,"repoUrl":26,"updatedAt":1733},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1720,1721,1724,1727,1730],{"name":1693,"slug":1694,"type":15},{"name":1722,"slug":1723,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1725,"slug":1726,"type":15},"SDK","sdk",{"name":1728,"slug":1729,"type":15},"Serverless","serverless",{"name":1731,"slug":1732,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1735,"name":1735,"fn":1736,"description":1737,"org":1738,"tags":1739,"stars":25,"repoUrl":26,"updatedAt":1755},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1740,1743,1746,1749,1752],{"name":1741,"slug":1742,"type":15},"Frontend","frontend",{"name":1744,"slug":1745,"type":15},"React","react",{"name":1747,"slug":1748,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1750,"slug":1751,"type":15},"UI Components","ui-components",{"name":1753,"slug":1754,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1757,"name":1757,"fn":1758,"description":1759,"org":1760,"tags":1761,"stars":25,"repoUrl":26,"updatedAt":1775},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1762,1765,1768,1771,1774],{"name":1763,"slug":1764,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1766,"slug":1767,"type":15},"Cost Optimization","cost-optimization",{"name":1769,"slug":1770,"type":15},"LLM","llm",{"name":1772,"slug":1773,"type":15},"Performance","performance",{"name":1753,"slug":1754,"type":15},"2026-04-06T18:40:44.377464",{"slug":1777,"name":1777,"fn":1778,"description":1779,"org":1780,"tags":1781,"stars":25,"repoUrl":26,"updatedAt":1787},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1782,1783,1786],{"name":1766,"slug":1767,"type":15},{"name":1784,"slug":1785,"type":15},"Database","database",{"name":1769,"slug":1770,"type":15},"2026-04-06T18:41:08.513425",600,{"items":1790,"total":1987},[1791,1812,1835,1852,1868,1885,1904,1916,1930,1944,1956,1971],{"slug":1792,"name":1792,"fn":1793,"description":1794,"org":1795,"tags":1796,"stars":1809,"repoUrl":1810,"updatedAt":1811},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1797,1800,1803,1806],{"name":1798,"slug":1799,"type":15},"Documents","documents",{"name":1801,"slug":1802,"type":15},"Healthcare","healthcare",{"name":1804,"slug":1805,"type":15},"Insurance","insurance",{"name":1807,"slug":1808,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1813,"name":1813,"fn":1814,"description":1815,"org":1816,"tags":1817,"stars":1832,"repoUrl":1833,"updatedAt":1834},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1818,1821,1823,1826,1829],{"name":1819,"slug":1820,"type":15},".NET","dotnet",{"name":1822,"slug":1813,"type":15},"ASP.NET Core",{"name":1824,"slug":1825,"type":15},"Blazor","blazor",{"name":1827,"slug":1828,"type":15},"C#","csharp",{"name":1830,"slug":1831,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1836,"name":1836,"fn":1837,"description":1838,"org":1839,"tags":1840,"stars":1832,"repoUrl":1833,"updatedAt":1851},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1841,1844,1847,1850],{"name":1842,"slug":1843,"type":15},"Apps SDK","apps-sdk",{"name":1845,"slug":1846,"type":15},"ChatGPT","chatgpt",{"name":1848,"slug":1849,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1853,"name":1853,"fn":1854,"description":1855,"org":1856,"tags":1857,"stars":1832,"repoUrl":1833,"updatedAt":1867},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1858,1861,1864],{"name":1859,"slug":1860,"type":15},"API Development","api-development",{"name":1862,"slug":1863,"type":15},"CLI","cli",{"name":1865,"slug":1866,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1869,"name":1869,"fn":1870,"description":1871,"org":1872,"tags":1873,"stars":1832,"repoUrl":1833,"updatedAt":1884},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1874,1877,1880,1881],{"name":1875,"slug":1876,"type":15},"Cloudflare","cloudflare",{"name":1878,"slug":1879,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1722,"slug":1723,"type":15},{"name":1882,"slug":1883,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1886,"name":1886,"fn":1887,"description":1888,"org":1889,"tags":1890,"stars":1832,"repoUrl":1833,"updatedAt":1903},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1891,1894,1897,1900],{"name":1892,"slug":1893,"type":15},"Productivity","productivity",{"name":1895,"slug":1896,"type":15},"Project Management","project-management",{"name":1898,"slug":1899,"type":15},"Strategy","strategy",{"name":1901,"slug":1902,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1905,"name":1905,"fn":1906,"description":1907,"org":1908,"tags":1909,"stars":1832,"repoUrl":1833,"updatedAt":1915},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1910,1911,1913,1914],{"name":1683,"slug":1684,"type":15},{"name":1912,"slug":1905,"type":15},"Figma",{"name":1741,"slug":1742,"type":15},{"name":1848,"slug":1849,"type":15},"2026-04-12T05:06:47.939943",{"slug":1917,"name":1917,"fn":1918,"description":1919,"org":1920,"tags":1921,"stars":1832,"repoUrl":1833,"updatedAt":1929},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1922,1923,1926,1927,1928],{"name":1683,"slug":1684,"type":15},{"name":1924,"slug":1925,"type":15},"Design System","design-system",{"name":1912,"slug":1905,"type":15},{"name":1741,"slug":1742,"type":15},{"name":1750,"slug":1751,"type":15},"2026-05-10T05:59:52.971881",{"slug":1931,"name":1931,"fn":1932,"description":1933,"org":1934,"tags":1935,"stars":1832,"repoUrl":1833,"updatedAt":1943},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1936,1937,1938,1941,1942],{"name":1683,"slug":1684,"type":15},{"name":1924,"slug":1925,"type":15},{"name":1939,"slug":1940,"type":15},"Documentation","documentation",{"name":1912,"slug":1905,"type":15},{"name":1741,"slug":1742,"type":15},"2026-05-16T06:07:47.821474",{"slug":1945,"name":1945,"fn":1946,"description":1947,"org":1948,"tags":1949,"stars":1832,"repoUrl":1833,"updatedAt":1955},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1950,1951,1952,1953,1954],{"name":1683,"slug":1684,"type":15},{"name":1912,"slug":1905,"type":15},{"name":1741,"slug":1742,"type":15},{"name":1750,"slug":1751,"type":15},{"name":1830,"slug":1831,"type":15},"2026-05-16T06:07:40.583615",{"slug":1957,"name":1957,"fn":1958,"description":1959,"org":1960,"tags":1961,"stars":1832,"repoUrl":1833,"updatedAt":1970},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1962,1965,1966,1969],{"name":1963,"slug":1964,"type":15},"Animation","animation",{"name":1865,"slug":1866,"type":15},{"name":1967,"slug":1968,"type":15},"Creative","creative",{"name":1683,"slug":1684,"type":15},"2026-05-02T05:31:48.48485",{"slug":1972,"name":1972,"fn":1973,"description":1974,"org":1975,"tags":1976,"stars":1832,"repoUrl":1833,"updatedAt":1986},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1977,1978,1979,1982,1985],{"name":1967,"slug":1968,"type":15},{"name":1683,"slug":1684,"type":15},{"name":1980,"slug":1981,"type":15},"Image Generation","image-generation",{"name":1983,"slug":1984,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]