[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-atlassian-search-company-knowledge":3,"mdc-qk44w4-key":53,"related-org-atlassian-search-company-knowledge":1682,"related-repo-atlassian-search-company-knowledge":1854},{"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":48,"sourceUrl":51,"mdContent":52},"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},"atlassian","Atlassian","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fatlassian.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",848,"https:\u002F\u002Fgithub.com\u002Fatlassian\u002Fatlassian-mcp-server","2026-07-12T07:58:39.684132",null,107,[31,32,8,33,34,35,36,14,37,38,39,18,40,41,42,43,44,45,46,47],"ai","ai-agents","bitbucket","chatgpt","claude","compass","copilot","cursor","developer-tools","jira-service-management","llm","mcp","mcp-server","model-context-protocol","oauth","rovo","vscode",{"repoUrl":26,"stars":25,"forks":29,"topics":49,"description":50},[31,32,8,33,34,35,36,14,37,38,39,18,40,41,42,43,44,45,46,47],"Official remote MCP server for Atlassian. Securely connect Jira, Confluence, Jira Service Management, Bitbucket, and Compass to Claude, ChatGPT, Cursor, VS Code, and other AI tools using OAuth 2.1 or API tokens.","https:\u002F\u002Fgithub.com\u002Fatlassian\u002Fatlassian-mcp-server\u002Ftree\u002FHEAD\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":54,"body":55},{"name":4,"description":6},{"type":56,"children":57},"root",[58,66,73,79,85,90,101,105,111,116,123,128,136,156,164,182,185,191,196,203,220,232,240,258,266,275,280,286,302,311,318,336,344,353,359,374,383,390,408,416,425,431,439,470,473,479,484,490,495,504,514,522,540,546,551,560,569,576,594,600,608,641,651,654,660,665,671,679,795,801,809,818,826,835,843,852,860,869,872,878,883,889,897,906,914,923,931,940,943,949,955,963,986,994,1012,1018,1026,1049,1057,1080,1088,1111,1114,1120,1126,1131,1140,1146,1151,1181,1187,1192,1201,1207,1212,1221,1227,1232,1241,1244,1250,1256,1266,1274,1308,1316,1325,1331,1340,1347,1370,1377,1386,1392,1401,1408,1426,1433,1442,1445,1451,1456,1461,1466,1471,1474,1480,1492,1497,1505,1528,1531,1537,1555,1563,1610,1618,1646,1654],{"type":59,"tag":60,"props":61,"children":62},"element","h1",{"id":4},[63],{"type":64,"value":65},"text","Search Company Knowledge",{"type":59,"tag":67,"props":68,"children":70},"h2",{"id":69},"keywords",[71],{"type":64,"value":72},"Keywords",{"type":59,"tag":74,"props":75,"children":76},"p",{},[77],{"type":64,"value":78},"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":59,"tag":67,"props":80,"children":82},{"id":81},"overview",[83],{"type":64,"value":84},"Overview",{"type":59,"tag":74,"props":86,"children":87},{},[88],{"type":64,"value":89},"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":59,"tag":74,"props":91,"children":92},{},[93,99],{"type":59,"tag":94,"props":95,"children":96},"strong",{},[97],{"type":64,"value":98},"Use this skill when:",{"type":64,"value":100}," Users ask about internal company knowledge that might be documented in Confluence pages, Jira tickets, or internal documentation.",{"type":59,"tag":102,"props":103,"children":104},"hr",{},[],{"type":59,"tag":67,"props":106,"children":108},{"id":107},"workflow",[109],{"type":64,"value":110},"Workflow",{"type":59,"tag":74,"props":112,"children":113},{},[114],{"type":64,"value":115},"Follow this 5-step process to provide comprehensive, well-cited answers:",{"type":59,"tag":117,"props":118,"children":120},"h3",{"id":119},"step-1-identify-search-query",[121],{"type":64,"value":122},"Step 1: Identify Search Query",{"type":59,"tag":74,"props":124,"children":125},{},[126],{"type":64,"value":127},"Extract the core search terms from the user's question.",{"type":59,"tag":74,"props":129,"children":130},{},[131],{"type":59,"tag":94,"props":132,"children":133},{},[134],{"type":64,"value":135},"Examples:",{"type":59,"tag":137,"props":138,"children":139},"ul",{},[140,146,151],{"type":59,"tag":141,"props":142,"children":143},"li",{},[144],{"type":64,"value":145},"User: \"Find everything about Stratus minions\" → Search: \"Stratus minions\"",{"type":59,"tag":141,"props":147,"children":148},{},[149],{"type":64,"value":150},"User: \"What do we know about the billing system?\" → Search: \"billing system\"",{"type":59,"tag":141,"props":152,"children":153},{},[154],{"type":64,"value":155},"User: \"Explain our deployment process\" → Search: \"deployment process\"",{"type":59,"tag":74,"props":157,"children":158},{},[159],{"type":59,"tag":94,"props":160,"children":161},{},[162],{"type":64,"value":163},"Consider:",{"type":59,"tag":137,"props":165,"children":166},{},[167,172,177],{"type":59,"tag":141,"props":168,"children":169},{},[170],{"type":64,"value":171},"Main topic or concept",{"type":59,"tag":141,"props":173,"children":174},{},[175],{"type":64,"value":176},"Any specific system\u002Fcomponent names",{"type":59,"tag":141,"props":178,"children":179},{},[180],{"type":64,"value":181},"Technical terms or jargon",{"type":59,"tag":102,"props":183,"children":184},{},[],{"type":59,"tag":117,"props":186,"children":188},{"id":187},"step-2-execute-parallel-search",[189],{"type":64,"value":190},"Step 2: Execute Parallel Search",{"type":59,"tag":74,"props":192,"children":193},{},[194],{"type":64,"value":195},"Search across all available knowledge sources simultaneously for comprehensive coverage.",{"type":59,"tag":197,"props":198,"children":200},"h4",{"id":199},"option-a-cross-system-search-recommended-first",[201],{"type":64,"value":202},"Option A: Cross-System Search (Recommended First)",{"type":59,"tag":74,"props":204,"children":205},{},[206,208,218],{"type":64,"value":207},"Use the ",{"type":59,"tag":94,"props":209,"children":210},{},[211],{"type":59,"tag":212,"props":213,"children":215},"code",{"className":214},[],[216],{"type":64,"value":217},"search",{"type":64,"value":219}," tool (Rovo Search) to search across Confluence and Jira at once:",{"type":59,"tag":221,"props":222,"children":226},"pre",{"className":223,"code":225,"language":64},[224],"language-text","search(\n  cloudId=\"...\",\n  query=\"[extracted search terms]\"\n)\n",[227],{"type":59,"tag":212,"props":228,"children":230},{"__ignoreMap":229},"",[231],{"type":64,"value":225},{"type":59,"tag":74,"props":233,"children":234},{},[235],{"type":59,"tag":94,"props":236,"children":237},{},[238],{"type":64,"value":239},"When to use:",{"type":59,"tag":137,"props":241,"children":242},{},[243,248,253],{"type":59,"tag":141,"props":244,"children":245},{},[246],{"type":64,"value":247},"Default approach for most queries",{"type":59,"tag":141,"props":249,"children":250},{},[251],{"type":64,"value":252},"When you don't know which system has the information",{"type":59,"tag":141,"props":254,"children":255},{},[256],{"type":64,"value":257},"Fastest way to get results from multiple sources",{"type":59,"tag":74,"props":259,"children":260},{},[261],{"type":59,"tag":94,"props":262,"children":263},{},[264],{"type":64,"value":265},"Example:",{"type":59,"tag":221,"props":267,"children":270},{"className":268,"code":269,"language":64},[224],"search(\n  cloudId=\"...\",\n  query=\"Stratus minions\"\n)\n",[271],{"type":59,"tag":212,"props":272,"children":273},{"__ignoreMap":229},[274],{"type":64,"value":269},{"type":59,"tag":74,"props":276,"children":277},{},[278],{"type":64,"value":279},"This returns results from both Confluence pages and Jira issues.",{"type":59,"tag":197,"props":281,"children":283},{"id":282},"option-b-targeted-confluence-search",[284],{"type":64,"value":285},"Option B: Targeted Confluence Search",{"type":59,"tag":74,"props":287,"children":288},{},[289,291,300],{"type":64,"value":290},"Use ",{"type":59,"tag":94,"props":292,"children":293},{},[294],{"type":59,"tag":212,"props":295,"children":297},{"className":296},[],[298],{"type":64,"value":299},"searchConfluenceUsingCql",{"type":64,"value":301}," when specifically searching Confluence:",{"type":59,"tag":221,"props":303,"children":306},{"className":304,"code":305,"language":64},[224],"searchConfluenceUsingCql(\n  cloudId=\"...\",\n  cql=\"text ~ 'search terms' OR title ~ 'search terms'\"\n)\n",[307],{"type":59,"tag":212,"props":308,"children":309},{"__ignoreMap":229},[310],{"type":64,"value":305},{"type":59,"tag":74,"props":312,"children":313},{},[314],{"type":59,"tag":94,"props":315,"children":316},{},[317],{"type":64,"value":239},{"type":59,"tag":137,"props":319,"children":320},{},[321,326,331],{"type":59,"tag":141,"props":322,"children":323},{},[324],{"type":64,"value":325},"User specifically mentions \"in Confluence\" or \"in our docs\"",{"type":59,"tag":141,"props":327,"children":328},{},[329],{"type":64,"value":330},"Cross-system search returns too many Jira results",{"type":59,"tag":141,"props":332,"children":333},{},[334],{"type":64,"value":335},"Looking for documentation rather than tickets",{"type":59,"tag":74,"props":337,"children":338},{},[339],{"type":59,"tag":94,"props":340,"children":341},{},[342],{"type":64,"value":343},"Example CQL patterns:",{"type":59,"tag":221,"props":345,"children":348},{"className":346,"code":347,"language":64},[224],"text ~ \"Stratus minions\"\ntext ~ \"authentication\" AND type = page\ntitle ~ \"deployment guide\"\n",[349],{"type":59,"tag":212,"props":350,"children":351},{"__ignoreMap":229},[352],{"type":64,"value":347},{"type":59,"tag":197,"props":354,"children":356},{"id":355},"option-c-targeted-jira-search",[357],{"type":64,"value":358},"Option C: Targeted Jira Search",{"type":59,"tag":74,"props":360,"children":361},{},[362,363,372],{"type":64,"value":290},{"type":59,"tag":94,"props":364,"children":365},{},[366],{"type":59,"tag":212,"props":367,"children":369},{"className":368},[],[370],{"type":64,"value":371},"searchJiraIssuesUsingJql",{"type":64,"value":373}," when specifically searching Jira:",{"type":59,"tag":221,"props":375,"children":378},{"className":376,"code":377,"language":64},[224],"searchJiraIssuesUsingJql(\n  cloudId=\"...\",\n  jql=\"text ~ 'search terms' OR summary ~ 'search terms'\"\n)\n",[379],{"type":59,"tag":212,"props":380,"children":381},{"__ignoreMap":229},[382],{"type":64,"value":377},{"type":59,"tag":74,"props":384,"children":385},{},[386],{"type":59,"tag":94,"props":387,"children":388},{},[389],{"type":64,"value":239},{"type":59,"tag":137,"props":391,"children":392},{},[393,398,403],{"type":59,"tag":141,"props":394,"children":395},{},[396],{"type":64,"value":397},"User mentions \"tickets\", \"issues\", or \"bugs\"",{"type":59,"tag":141,"props":399,"children":400},{},[401],{"type":64,"value":402},"Looking for historical problems or implementation details",{"type":59,"tag":141,"props":404,"children":405},{},[406],{"type":64,"value":407},"Cross-system search returns mostly documentation",{"type":59,"tag":74,"props":409,"children":410},{},[411],{"type":59,"tag":94,"props":412,"children":413},{},[414],{"type":64,"value":415},"Example JQL patterns:",{"type":59,"tag":221,"props":417,"children":420},{"className":418,"code":419,"language":64},[224],"text ~ \"Stratus minions\"\nsummary ~ \"authentication\" AND type = Bug\ntext ~ \"deployment\" AND created >= -90d\n",[421],{"type":59,"tag":212,"props":422,"children":423},{"__ignoreMap":229},[424],{"type":64,"value":419},{"type":59,"tag":197,"props":426,"children":428},{"id":427},"search-strategy",[429],{"type":64,"value":430},"Search Strategy",{"type":59,"tag":74,"props":432,"children":433},{},[434],{"type":59,"tag":94,"props":435,"children":436},{},[437],{"type":64,"value":438},"For most queries, use this sequence:",{"type":59,"tag":440,"props":441,"children":442},"ol",{},[443,460,465],{"type":59,"tag":141,"props":444,"children":445},{},[446,448,453,455],{"type":64,"value":447},"Start with ",{"type":59,"tag":212,"props":449,"children":451},{"className":450},[],[452],{"type":64,"value":217},{"type":64,"value":454}," (cross-system) - ",{"type":59,"tag":94,"props":456,"children":457},{},[458],{"type":64,"value":459},"always try this first",{"type":59,"tag":141,"props":461,"children":462},{},[463],{"type":64,"value":464},"If results are unclear, follow up with targeted searches",{"type":59,"tag":141,"props":466,"children":467},{},[468],{"type":64,"value":469},"If results mention specific pages\u002Ftickets, fetch them for details",{"type":59,"tag":102,"props":471,"children":472},{},[],{"type":59,"tag":117,"props":474,"children":476},{"id":475},"step-3-fetch-detailed-content",[477],{"type":64,"value":478},"Step 3: Fetch Detailed Content",{"type":59,"tag":74,"props":480,"children":481},{},[482],{"type":64,"value":483},"After identifying relevant sources, fetch full content for comprehensive answers.",{"type":59,"tag":197,"props":485,"children":487},{"id":486},"for-confluence-pages",[488],{"type":64,"value":489},"For Confluence Pages",{"type":59,"tag":74,"props":491,"children":492},{},[493],{"type":64,"value":494},"When search results reference Confluence pages:",{"type":59,"tag":221,"props":496,"children":499},{"className":497,"code":498,"language":64},[224],"getConfluencePage(\n  cloudId=\"...\",\n  pageId=\"[page ID from search results]\",\n  contentFormat=\"markdown\"\n)\n",[500],{"type":59,"tag":212,"props":501,"children":502},{"__ignoreMap":229},[503],{"type":64,"value":498},{"type":59,"tag":74,"props":505,"children":506},{},[507,512],{"type":59,"tag":94,"props":508,"children":509},{},[510],{"type":64,"value":511},"Returns:",{"type":64,"value":513}," Full page content in Markdown format",{"type":59,"tag":74,"props":515,"children":516},{},[517],{"type":59,"tag":94,"props":518,"children":519},{},[520],{"type":64,"value":521},"When to fetch:",{"type":59,"tag":137,"props":523,"children":524},{},[525,530,535],{"type":59,"tag":141,"props":526,"children":527},{},[528],{"type":64,"value":529},"Search result snippet is too brief",{"type":59,"tag":141,"props":531,"children":532},{},[533],{"type":64,"value":534},"Need complete context",{"type":59,"tag":141,"props":536,"children":537},{},[538],{"type":64,"value":539},"Page seems to be the primary documentation",{"type":59,"tag":197,"props":541,"children":543},{"id":542},"for-jira-issues",[544],{"type":64,"value":545},"For Jira Issues",{"type":59,"tag":74,"props":547,"children":548},{},[549],{"type":64,"value":550},"When search results reference Jira issues:",{"type":59,"tag":221,"props":552,"children":555},{"className":553,"code":554,"language":64},[224],"getJiraIssue(\n  cloudId=\"...\",\n  issueIdOrKey=\"PROJ-123\"\n)\n",[556],{"type":59,"tag":212,"props":557,"children":558},{"__ignoreMap":229},[559],{"type":64,"value":554},{"type":59,"tag":74,"props":561,"children":562},{},[563,567],{"type":59,"tag":94,"props":564,"children":565},{},[566],{"type":64,"value":511},{"type":64,"value":568}," Full issue details including description, comments, status",{"type":59,"tag":74,"props":570,"children":571},{},[572],{"type":59,"tag":94,"props":573,"children":574},{},[575],{"type":64,"value":521},{"type":59,"tag":137,"props":577,"children":578},{},[579,584,589],{"type":59,"tag":141,"props":580,"children":581},{},[582],{"type":64,"value":583},"Need to understand a reported bug or issue",{"type":59,"tag":141,"props":585,"children":586},{},[587],{"type":64,"value":588},"Search result doesn't show full context",{"type":59,"tag":141,"props":590,"children":591},{},[592],{"type":64,"value":593},"Issue contains important implementation notes",{"type":59,"tag":197,"props":595,"children":597},{"id":596},"prioritization",[598],{"type":64,"value":599},"Prioritization",{"type":59,"tag":74,"props":601,"children":602},{},[603],{"type":59,"tag":94,"props":604,"children":605},{},[606],{"type":64,"value":607},"Fetch in this order:",{"type":59,"tag":440,"props":609,"children":610},{},[611,621,631],{"type":59,"tag":141,"props":612,"children":613},{},[614,619],{"type":59,"tag":94,"props":615,"children":616},{},[617],{"type":64,"value":618},"Official documentation pages",{"type":64,"value":620}," (Confluence pages with \"guide\", \"documentation\", \"overview\" in title)",{"type":59,"tag":141,"props":622,"children":623},{},[624,629],{"type":59,"tag":94,"props":625,"children":626},{},[627],{"type":64,"value":628},"Recent\u002Frelevant issues",{"type":64,"value":630}," (Jira tickets that are relevant and recent)",{"type":59,"tag":141,"props":632,"children":633},{},[634,639],{"type":59,"tag":94,"props":635,"children":636},{},[637],{"type":64,"value":638},"Additional context",{"type":64,"value":640}," (related pages mentioned in initial results)",{"type":59,"tag":74,"props":642,"children":643},{},[644,649],{"type":59,"tag":94,"props":645,"children":646},{},[647],{"type":64,"value":648},"Don't fetch everything",{"type":64,"value":650}," - be selective based on relevance to user's question.",{"type":59,"tag":102,"props":652,"children":653},{},[],{"type":59,"tag":117,"props":655,"children":657},{"id":656},"step-4-synthesize-results",[658],{"type":64,"value":659},"Step 4: Synthesize Results",{"type":59,"tag":74,"props":661,"children":662},{},[663],{"type":64,"value":664},"Combine information from multiple sources into a coherent answer.",{"type":59,"tag":197,"props":666,"children":668},{"id":667},"synthesis-guidelines",[669],{"type":64,"value":670},"Synthesis Guidelines",{"type":59,"tag":74,"props":672,"children":673},{},[674],{"type":59,"tag":94,"props":675,"children":676},{},[677],{"type":64,"value":678},"Structure your answer:",{"type":59,"tag":440,"props":680,"children":681},{},[682,703,724,753,774],{"type":59,"tag":141,"props":683,"children":684},{},[685,690],{"type":59,"tag":94,"props":686,"children":687},{},[688],{"type":64,"value":689},"Direct Answer First",{"type":59,"tag":137,"props":691,"children":692},{},[693,698],{"type":59,"tag":141,"props":694,"children":695},{},[696],{"type":64,"value":697},"Start with a clear, concise answer to the question",{"type":59,"tag":141,"props":699,"children":700},{},[701],{"type":64,"value":702},"\"Stratus minions are...\"",{"type":59,"tag":141,"props":704,"children":705},{},[706,711],{"type":59,"tag":94,"props":707,"children":708},{},[709],{"type":64,"value":710},"Detailed Explanation",{"type":59,"tag":137,"props":712,"children":713},{},[714,719],{"type":59,"tag":141,"props":715,"children":716},{},[717],{"type":64,"value":718},"Provide comprehensive details from all sources",{"type":59,"tag":141,"props":720,"children":721},{},[722],{"type":64,"value":723},"Organize by topic, not by source",{"type":59,"tag":141,"props":725,"children":726},{},[727,732],{"type":59,"tag":94,"props":728,"children":729},{},[730],{"type":64,"value":731},"Source Attribution",{"type":59,"tag":137,"props":733,"children":734},{},[735,740],{"type":59,"tag":141,"props":736,"children":737},{},[738],{"type":64,"value":739},"Note where each piece of information comes from",{"type":59,"tag":141,"props":741,"children":742},{},[743,745,751],{"type":64,"value":744},"Format: \"According to ",{"type":59,"tag":746,"props":747,"children":748},"span",{},[749],{"type":64,"value":750},"source",{"type":64,"value":752},", ...\"",{"type":59,"tag":141,"props":754,"children":755},{},[756,761],{"type":59,"tag":94,"props":757,"children":758},{},[759],{"type":64,"value":760},"Highlight Discrepancies",{"type":59,"tag":137,"props":762,"children":763},{},[764,769],{"type":59,"tag":141,"props":765,"children":766},{},[767],{"type":64,"value":768},"If sources conflict, note it explicitly",{"type":59,"tag":141,"props":770,"children":771},{},[772],{"type":64,"value":773},"Example: \"The Confluence documentation states X, however Jira ticket PROJ-123 indicates that due to bug Y, the behavior is actually Z\"",{"type":59,"tag":141,"props":775,"children":776},{},[777,782],{"type":59,"tag":94,"props":778,"children":779},{},[780],{"type":64,"value":781},"Provide Context",{"type":59,"tag":137,"props":783,"children":784},{},[785,790],{"type":59,"tag":141,"props":786,"children":787},{},[788],{"type":64,"value":789},"Mention if information is outdated",{"type":59,"tag":141,"props":791,"children":792},{},[793],{"type":64,"value":794},"Note if a feature is deprecated or in development",{"type":59,"tag":197,"props":796,"children":798},{"id":797},"synthesis-patterns",[799],{"type":64,"value":800},"Synthesis Patterns",{"type":59,"tag":74,"props":802,"children":803},{},[804],{"type":59,"tag":94,"props":805,"children":806},{},[807],{"type":64,"value":808},"Pattern 1: Multiple sources agree",{"type":59,"tag":221,"props":810,"children":813},{"className":811,"code":812,"language":64},[224],"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",[814],{"type":59,"tag":212,"props":815,"children":816},{"__ignoreMap":229},[817],{"type":64,"value":812},{"type":59,"tag":74,"props":819,"children":820},{},[821],{"type":59,"tag":94,"props":822,"children":823},{},[824],{"type":64,"value":825},"Pattern 2: Sources provide different aspects",{"type":59,"tag":221,"props":827,"children":830},{"className":828,"code":829,"language":64},[224],"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",[831],{"type":59,"tag":212,"props":832,"children":833},{"__ignoreMap":229},[834],{"type":64,"value":829},{"type":59,"tag":74,"props":836,"children":837},{},[838],{"type":59,"tag":94,"props":839,"children":840},{},[841],{"type":64,"value":842},"Pattern 3: Conflicting information",{"type":59,"tag":221,"props":844,"children":847},{"className":845,"code":846,"language":64},[224],"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",[848],{"type":59,"tag":212,"props":849,"children":850},{"__ignoreMap":229},[851],{"type":64,"value":846},{"type":59,"tag":74,"props":853,"children":854},{},[855],{"type":59,"tag":94,"props":856,"children":857},{},[858],{"type":64,"value":859},"Pattern 4: Incomplete information",{"type":59,"tag":221,"props":861,"children":864},{"className":862,"code":863,"language":64},[224],"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",[865],{"type":59,"tag":212,"props":866,"children":867},{"__ignoreMap":229},[868],{"type":64,"value":863},{"type":59,"tag":102,"props":870,"children":871},{},[],{"type":59,"tag":117,"props":873,"children":875},{"id":874},"step-5-provide-citations",[876],{"type":64,"value":877},"Step 5: Provide Citations",{"type":59,"tag":74,"props":879,"children":880},{},[881],{"type":64,"value":882},"Always include links to source materials so users can explore further.",{"type":59,"tag":197,"props":884,"children":886},{"id":885},"citation-format",[887],{"type":64,"value":888},"Citation Format",{"type":59,"tag":74,"props":890,"children":891},{},[892],{"type":59,"tag":94,"props":893,"children":894},{},[895],{"type":64,"value":896},"For Confluence pages:",{"type":59,"tag":221,"props":898,"children":901},{"className":899,"code":900,"language":64},[224],"**Source:** [Page Title](https:\u002F\u002Fyoursite.atlassian.net\u002Fwiki\u002Fspaces\u002FSPACE\u002Fpages\u002F123456)\n",[902],{"type":59,"tag":212,"props":903,"children":904},{"__ignoreMap":229},[905],{"type":64,"value":900},{"type":59,"tag":74,"props":907,"children":908},{},[909],{"type":59,"tag":94,"props":910,"children":911},{},[912],{"type":64,"value":913},"For Jira issues:",{"type":59,"tag":221,"props":915,"children":918},{"className":916,"code":917,"language":64},[224],"**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",[919],{"type":59,"tag":212,"props":920,"children":921},{"__ignoreMap":229},[922],{"type":64,"value":917},{"type":59,"tag":74,"props":924,"children":925},{},[926],{"type":59,"tag":94,"props":927,"children":928},{},[929],{"type":64,"value":930},"Complete citation section:",{"type":59,"tag":221,"props":932,"children":935},{"className":933,"code":934,"language":64},[224],"## 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",[936],{"type":59,"tag":212,"props":937,"children":938},{"__ignoreMap":229},[939],{"type":64,"value":934},{"type":59,"tag":102,"props":941,"children":942},{},[],{"type":59,"tag":67,"props":944,"children":946},{"id":945},"search-best-practices",[947],{"type":64,"value":948},"Search Best Practices",{"type":59,"tag":117,"props":950,"children":952},{"id":951},"effective-search-terms",[953],{"type":64,"value":954},"Effective Search Terms",{"type":59,"tag":74,"props":956,"children":957},{},[958],{"type":59,"tag":94,"props":959,"children":960},{},[961],{"type":64,"value":962},"Do:",{"type":59,"tag":137,"props":964,"children":965},{},[966,971,976,981],{"type":59,"tag":141,"props":967,"children":968},{},[969],{"type":64,"value":970},"✅ Use specific technical terms: \"OAuth authentication flow\"",{"type":59,"tag":141,"props":972,"children":973},{},[974],{"type":64,"value":975},"✅ Include system names: \"Stratus minions\"",{"type":59,"tag":141,"props":977,"children":978},{},[979],{"type":64,"value":980},"✅ Use acronyms if they're common: \"API rate limiting\"",{"type":59,"tag":141,"props":982,"children":983},{},[984],{"type":64,"value":985},"✅ Try variations if first search fails: \"deploy process\" → \"deployment pipeline\"",{"type":59,"tag":74,"props":987,"children":988},{},[989],{"type":59,"tag":94,"props":990,"children":991},{},[992],{"type":64,"value":993},"Don't:",{"type":59,"tag":137,"props":995,"children":996},{},[997,1002,1007],{"type":59,"tag":141,"props":998,"children":999},{},[1000],{"type":64,"value":1001},"❌ Be too generic: \"how things work\"",{"type":59,"tag":141,"props":1003,"children":1004},{},[1005],{"type":64,"value":1006},"❌ Use full sentences: Use key terms instead",{"type":59,"tag":141,"props":1008,"children":1009},{},[1010],{"type":64,"value":1011},"❌ Include filler words: \"the\", \"our\", \"about\"",{"type":59,"tag":117,"props":1013,"children":1015},{"id":1014},"search-result-quality",[1016],{"type":64,"value":1017},"Search Result Quality",{"type":59,"tag":74,"props":1019,"children":1020},{},[1021],{"type":59,"tag":94,"props":1022,"children":1023},{},[1024],{"type":64,"value":1025},"Good results:",{"type":59,"tag":137,"props":1027,"children":1028},{},[1029,1034,1039,1044],{"type":59,"tag":141,"props":1030,"children":1031},{},[1032],{"type":64,"value":1033},"Recent documentation (\u003C 1 year old)",{"type":59,"tag":141,"props":1035,"children":1036},{},[1037],{"type":64,"value":1038},"Official\u002Fcanonical pages (titled \"Guide\", \"Documentation\", \"Overview\")",{"type":59,"tag":141,"props":1040,"children":1041},{},[1042],{"type":64,"value":1043},"Multiple sources confirming same information",{"type":59,"tag":141,"props":1045,"children":1046},{},[1047],{"type":64,"value":1048},"Detailed implementation notes",{"type":59,"tag":74,"props":1050,"children":1051},{},[1052],{"type":59,"tag":94,"props":1053,"children":1054},{},[1055],{"type":64,"value":1056},"Questionable results:",{"type":59,"tag":137,"props":1058,"children":1059},{},[1060,1065,1070,1075],{"type":59,"tag":141,"props":1061,"children":1062},{},[1063],{"type":64,"value":1064},"Very old tickets (> 2 years, may be outdated)",{"type":59,"tag":141,"props":1066,"children":1067},{},[1068],{"type":64,"value":1069},"Duplicate or conflicting information",{"type":59,"tag":141,"props":1071,"children":1072},{},[1073],{"type":64,"value":1074},"Draft pages or work-in-progress docs",{"type":59,"tag":141,"props":1076,"children":1077},{},[1078],{"type":64,"value":1079},"Personal pages (may not be official)",{"type":59,"tag":74,"props":1081,"children":1082},{},[1083],{"type":59,"tag":94,"props":1084,"children":1085},{},[1086],{"type":64,"value":1087},"When results are poor:",{"type":59,"tag":137,"props":1089,"children":1090},{},[1091,1096,1101,1106],{"type":59,"tag":141,"props":1092,"children":1093},{},[1094],{"type":64,"value":1095},"Try different search terms",{"type":59,"tag":141,"props":1097,"children":1098},{},[1099],{"type":64,"value":1100},"Expand search to include related concepts",{"type":59,"tag":141,"props":1102,"children":1103},{},[1104],{"type":64,"value":1105},"Search for specific error messages or codes",{"type":59,"tag":141,"props":1107,"children":1108},{},[1109],{"type":64,"value":1110},"Ask user for more context",{"type":59,"tag":102,"props":1112,"children":1113},{},[],{"type":59,"tag":67,"props":1115,"children":1117},{"id":1116},"handling-common-scenarios",[1118],{"type":64,"value":1119},"Handling Common Scenarios",{"type":59,"tag":117,"props":1121,"children":1123},{"id":1122},"scenario-1-no-results-found",[1124],{"type":64,"value":1125},"Scenario 1: No Results Found",{"type":59,"tag":74,"props":1127,"children":1128},{},[1129],{"type":64,"value":1130},"If searches return no results:",{"type":59,"tag":221,"props":1132,"children":1135},{"className":1133,"code":1134,"language":64},[224],"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",[1136],{"type":59,"tag":212,"props":1137,"children":1138},{"__ignoreMap":229},[1139],{"type":64,"value":1134},{"type":59,"tag":117,"props":1141,"children":1143},{"id":1142},"scenario-2-too-many-results",[1144],{"type":64,"value":1145},"Scenario 2: Too Many Results",{"type":59,"tag":74,"props":1147,"children":1148},{},[1149],{"type":64,"value":1150},"If search returns 50+ results:",{"type":59,"tag":137,"props":1152,"children":1153},{},[1154,1159,1164,1169],{"type":59,"tag":141,"props":1155,"children":1156},{},[1157],{"type":64,"value":1158},"Focus on most recent and most relevant (top 10-15)",{"type":59,"tag":141,"props":1160,"children":1161},{},[1162],{"type":64,"value":1163},"Prioritize official documentation over random tickets",{"type":59,"tag":141,"props":1165,"children":1166},{},[1167],{"type":64,"value":1168},"Group similar results: \"I found 15 tickets related to authentication bugs...\"",{"type":59,"tag":141,"props":1170,"children":1171},{},[1172,1174,1179],{"type":64,"value":1173},"Offer to narrow search: \"Would you like me to focus on ",{"type":59,"tag":746,"props":1175,"children":1176},{},[1177],{"type":64,"value":1178},"specific aspect",{"type":64,"value":1180},"?\"",{"type":59,"tag":117,"props":1182,"children":1184},{"id":1183},"scenario-3-ambiguous-query",[1185],{"type":64,"value":1186},"Scenario 3: Ambiguous Query",{"type":59,"tag":74,"props":1188,"children":1189},{},[1190],{"type":64,"value":1191},"If the user's question is vague:",{"type":59,"tag":221,"props":1193,"children":1196},{"className":1194,"code":1195,"language":64},[224],"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",[1197],{"type":59,"tag":212,"props":1198,"children":1199},{"__ignoreMap":229},[1200],{"type":64,"value":1195},{"type":59,"tag":117,"props":1202,"children":1204},{"id":1203},"scenario-4-outdated-information",[1205],{"type":64,"value":1206},"Scenario 4: Outdated Information",{"type":59,"tag":74,"props":1208,"children":1209},{},[1210],{"type":64,"value":1211},"If you find information is old:",{"type":59,"tag":221,"props":1213,"children":1216},{"className":1214,"code":1215,"language":64},[224],"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",[1217],{"type":59,"tag":212,"props":1218,"children":1219},{"__ignoreMap":229},[1220],{"type":64,"value":1215},{"type":59,"tag":117,"props":1222,"children":1224},{"id":1223},"scenario-5-restrictedprivate-content",[1225],{"type":64,"value":1226},"Scenario 5: Restricted\u002FPrivate Content",{"type":59,"tag":74,"props":1228,"children":1229},{},[1230],{"type":64,"value":1231},"If search returns inaccessible content:",{"type":59,"tag":221,"props":1233,"children":1236},{"className":1234,"code":1235,"language":64},[224],"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",[1237],{"type":59,"tag":212,"props":1238,"children":1239},{"__ignoreMap":229},[1240],{"type":64,"value":1235},{"type":59,"tag":102,"props":1242,"children":1243},{},[],{"type":59,"tag":67,"props":1245,"children":1247},{"id":1246},"examples",[1248],{"type":64,"value":1249},"Examples",{"type":59,"tag":117,"props":1251,"children":1253},{"id":1252},"example-1-clear-documentation-available",[1254],{"type":64,"value":1255},"Example 1: Clear Documentation Available",{"type":59,"tag":74,"props":1257,"children":1258},{},[1259,1264],{"type":59,"tag":94,"props":1260,"children":1261},{},[1262],{"type":64,"value":1263},"User:",{"type":64,"value":1265}," \"What are Stratus minions?\"",{"type":59,"tag":74,"props":1267,"children":1268},{},[1269],{"type":59,"tag":94,"props":1270,"children":1271},{},[1272],{"type":64,"value":1273},"Process:",{"type":59,"tag":440,"props":1275,"children":1276},{},[1277,1288,1293,1298,1303],{"type":59,"tag":141,"props":1278,"children":1279},{},[1280,1282],{"type":64,"value":1281},"Search: ",{"type":59,"tag":212,"props":1283,"children":1285},{"className":1284},[],[1286],{"type":64,"value":1287},"search(cloudId=\"...\", query=\"Stratus minions\")",{"type":59,"tag":141,"props":1289,"children":1290},{},[1291],{"type":64,"value":1292},"Find: Confluence page \"Stratus Architecture\" + 3 Jira tickets",{"type":59,"tag":141,"props":1294,"children":1295},{},[1296],{"type":64,"value":1297},"Fetch: Get full Confluence page content",{"type":59,"tag":141,"props":1299,"children":1300},{},[1301],{"type":64,"value":1302},"Synthesize: Combine architectural overview with implementation details from tickets",{"type":59,"tag":141,"props":1304,"children":1305},{},[1306],{"type":64,"value":1307},"Cite: Provide links to all sources",{"type":59,"tag":74,"props":1309,"children":1310},{},[1311],{"type":59,"tag":94,"props":1312,"children":1313},{},[1314],{"type":64,"value":1315},"Answer:",{"type":59,"tag":221,"props":1317,"children":1320},{"className":1318,"code":1319,"language":64},[224],"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",[1321],{"type":59,"tag":212,"props":1322,"children":1323},{"__ignoreMap":229},[1324],{"type":64,"value":1319},{"type":59,"tag":117,"props":1326,"children":1328},{"id":1327},"example-2-conflicting-information",[1329],{"type":64,"value":1330},"Example 2: Conflicting Information",{"type":59,"tag":74,"props":1332,"children":1333},{},[1334,1338],{"type":59,"tag":94,"props":1335,"children":1336},{},[1337],{"type":64,"value":1263},{"type":64,"value":1339}," \"How long is our session timeout?\"",{"type":59,"tag":74,"props":1341,"children":1342},{},[1343],{"type":59,"tag":94,"props":1344,"children":1345},{},[1346],{"type":64,"value":1273},{"type":59,"tag":440,"props":1348,"children":1349},{},[1350,1355,1360,1365],{"type":59,"tag":141,"props":1351,"children":1352},{},[1353],{"type":64,"value":1354},"Search across Confluence and Jira",{"type":59,"tag":141,"props":1356,"children":1357},{},[1358],{"type":64,"value":1359},"Find: Docs say 30 min, but ticket reports actual timeout is 15 min",{"type":59,"tag":141,"props":1361,"children":1362},{},[1363],{"type":64,"value":1364},"Fetch both sources for complete context",{"type":59,"tag":141,"props":1366,"children":1367},{},[1368],{"type":64,"value":1369},"Clearly note the discrepancy",{"type":59,"tag":74,"props":1371,"children":1372},{},[1373],{"type":59,"tag":94,"props":1374,"children":1375},{},[1376],{"type":64,"value":1315},{"type":59,"tag":221,"props":1378,"children":1381},{"className":1379,"code":1380,"language":64},[224],"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",[1382],{"type":59,"tag":212,"props":1383,"children":1384},{"__ignoreMap":229},[1385],{"type":64,"value":1380},{"type":59,"tag":117,"props":1387,"children":1389},{"id":1388},"example-3-partial-information",[1390],{"type":64,"value":1391},"Example 3: Partial Information",{"type":59,"tag":74,"props":1393,"children":1394},{},[1395,1399],{"type":59,"tag":94,"props":1396,"children":1397},{},[1398],{"type":64,"value":1263},{"type":64,"value":1400}," \"Explain our deployment process\"",{"type":59,"tag":74,"props":1402,"children":1403},{},[1404],{"type":59,"tag":94,"props":1405,"children":1406},{},[1407],{"type":64,"value":1273},{"type":59,"tag":440,"props":1409,"children":1410},{},[1411,1416,1421],{"type":59,"tag":141,"props":1412,"children":1413},{},[1414],{"type":64,"value":1415},"Search finds some information but not complete",{"type":59,"tag":141,"props":1417,"children":1418},{},[1419],{"type":64,"value":1420},"Synthesize what is available",{"type":59,"tag":141,"props":1422,"children":1423},{},[1424],{"type":64,"value":1425},"Note gaps in documentation",{"type":59,"tag":74,"props":1427,"children":1428},{},[1429],{"type":59,"tag":94,"props":1430,"children":1431},{},[1432],{"type":64,"value":1315},{"type":59,"tag":221,"props":1434,"children":1437},{"className":1435,"code":1436,"language":64},[224],"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",[1438],{"type":59,"tag":212,"props":1439,"children":1440},{"__ignoreMap":229},[1441],{"type":64,"value":1436},{"type":59,"tag":102,"props":1443,"children":1444},{},[],{"type":59,"tag":67,"props":1446,"children":1448},{"id":1447},"tips-for-high-quality-answers",[1449],{"type":64,"value":1450},"Tips for High-Quality Answers",{"type":59,"tag":117,"props":1452,"children":1454},{"id":1453},"do",[1455],{"type":64,"value":962},{"type":59,"tag":74,"props":1457,"children":1458},{},[1459],{"type":64,"value":1460},"✅ 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":59,"tag":117,"props":1462,"children":1464},{"id":1463},"dont",[1465],{"type":64,"value":993},{"type":59,"tag":74,"props":1467,"children":1468},{},[1469],{"type":64,"value":1470},"❌ 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":59,"tag":102,"props":1472,"children":1473},{},[],{"type":59,"tag":67,"props":1475,"children":1477},{"id":1476},"when-not-to-use-this-skill",[1478],{"type":64,"value":1479},"When NOT to Use This Skill",{"type":59,"tag":74,"props":1481,"children":1482},{},[1483,1485,1490],{"type":64,"value":1484},"This skill is for ",{"type":59,"tag":94,"props":1486,"children":1487},{},[1488],{"type":64,"value":1489},"internal company knowledge only",{"type":64,"value":1491},". Do NOT use for:",{"type":59,"tag":74,"props":1493,"children":1494},{},[1495],{"type":64,"value":1496},"❌ 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":59,"tag":74,"props":1498,"children":1499},{},[1500],{"type":59,"tag":94,"props":1501,"children":1502},{},[1503],{"type":64,"value":1504},"Examples of what NOT to use this skill for:",{"type":59,"tag":137,"props":1506,"children":1507},{},[1508,1513,1518,1523],{"type":59,"tag":141,"props":1509,"children":1510},{},[1511],{"type":64,"value":1512},"\"What is machine learning?\" (general knowledge)",{"type":59,"tag":141,"props":1514,"children":1515},{},[1516],{"type":64,"value":1517},"\"How does React work?\" (external documentation)",{"type":59,"tag":141,"props":1519,"children":1520},{},[1521],{"type":64,"value":1522},"\"What's the weather?\" (not knowledge search)",{"type":59,"tag":141,"props":1524,"children":1525},{},[1526],{"type":64,"value":1527},"\"Find a restaurant\" (not work-related)",{"type":59,"tag":102,"props":1529,"children":1530},{},[],{"type":59,"tag":67,"props":1532,"children":1534},{"id":1533},"quick-reference",[1535],{"type":64,"value":1536},"Quick Reference",{"type":59,"tag":74,"props":1538,"children":1539},{},[1540,1545,1547,1553],{"type":59,"tag":94,"props":1541,"children":1542},{},[1543],{"type":64,"value":1544},"Primary tool:",{"type":64,"value":1546}," ",{"type":59,"tag":212,"props":1548,"children":1550},{"className":1549},[],[1551],{"type":64,"value":1552},"search(cloudId, query)",{"type":64,"value":1554}," - Use this first, always",{"type":59,"tag":74,"props":1556,"children":1557},{},[1558],{"type":59,"tag":94,"props":1559,"children":1560},{},[1561],{"type":64,"value":1562},"Follow-up tools:",{"type":59,"tag":137,"props":1564,"children":1565},{},[1566,1577,1588,1599],{"type":59,"tag":141,"props":1567,"children":1568},{},[1569,1575],{"type":59,"tag":212,"props":1570,"children":1572},{"className":1571},[],[1573],{"type":64,"value":1574},"getConfluencePage(cloudId, pageId, contentFormat)",{"type":64,"value":1576}," - Get full page content",{"type":59,"tag":141,"props":1578,"children":1579},{},[1580,1586],{"type":59,"tag":212,"props":1581,"children":1583},{"className":1582},[],[1584],{"type":64,"value":1585},"getJiraIssue(cloudId, issueIdOrKey)",{"type":64,"value":1587}," - Get full issue details",{"type":59,"tag":141,"props":1589,"children":1590},{},[1591,1597],{"type":59,"tag":212,"props":1592,"children":1594},{"className":1593},[],[1595],{"type":64,"value":1596},"searchConfluenceUsingCql(cloudId, cql)",{"type":64,"value":1598}," - Targeted Confluence search",{"type":59,"tag":141,"props":1600,"children":1601},{},[1602,1608],{"type":59,"tag":212,"props":1603,"children":1605},{"className":1604},[],[1606],{"type":64,"value":1607},"searchJiraIssuesUsingJql(cloudId, jql)",{"type":64,"value":1609}," - Targeted Jira search",{"type":59,"tag":74,"props":1611,"children":1612},{},[1613],{"type":59,"tag":94,"props":1614,"children":1615},{},[1616],{"type":64,"value":1617},"Answer structure:",{"type":59,"tag":440,"props":1619,"children":1620},{},[1621,1626,1631,1636,1641],{"type":59,"tag":141,"props":1622,"children":1623},{},[1624],{"type":64,"value":1625},"Direct answer",{"type":59,"tag":141,"props":1627,"children":1628},{},[1629],{"type":64,"value":1630},"Detailed explanation",{"type":59,"tag":141,"props":1632,"children":1633},{},[1634],{"type":64,"value":1635},"Source attribution",{"type":59,"tag":141,"props":1637,"children":1638},{},[1639],{"type":64,"value":1640},"Discrepancies (if any)",{"type":59,"tag":141,"props":1642,"children":1643},{},[1644],{"type":64,"value":1645},"Citations with links",{"type":59,"tag":74,"props":1647,"children":1648},{},[1649],{"type":59,"tag":94,"props":1650,"children":1651},{},[1652],{"type":64,"value":1653},"Remember:",{"type":59,"tag":137,"props":1655,"children":1656},{},[1657,1662,1667,1672,1677],{"type":59,"tag":141,"props":1658,"children":1659},{},[1660],{"type":64,"value":1661},"Parallel search > Sequential search",{"type":59,"tag":141,"props":1663,"children":1664},{},[1665],{"type":64,"value":1666},"Synthesize, don't just list",{"type":59,"tag":141,"props":1668,"children":1669},{},[1670],{"type":64,"value":1671},"Always cite sources",{"type":59,"tag":141,"props":1673,"children":1674},{},[1675],{"type":64,"value":1676},"Note conflicts explicitly",{"type":59,"tag":141,"props":1678,"children":1679},{},[1680],{"type":64,"value":1681},"Be clear about gaps in documentation",{"items":1683,"total":1853},[1684,1701,1717,1734,1741,1752,1767,1786,1801,1815,1829,1839],{"slug":1685,"name":1685,"fn":1686,"description":1687,"org":1688,"tags":1689,"stars":25,"repoUrl":26,"updatedAt":1700},"capture-tasks-from-meeting-notes","create Jira tasks from meeting notes","Analyze meeting notes to find action items and create Jira tasks for assigned work. When an agent needs to: (1) Create Jira tasks or tickets from meeting notes, (2) Extract or find action items from notes or Confluence pages, (3) Parse meeting notes for assigned tasks, or (4) Analyze notes and generate tasks for team members. Identifies assignees, looks up account IDs, and creates tasks with proper context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1690,1693,1694,1697],{"name":1691,"slug":1692,"type":15},"Automation","automation",{"name":17,"slug":18,"type":15},{"name":1695,"slug":1696,"type":15},"Meetings","meetings",{"name":1698,"slug":1699,"type":15},"Task Management","task-management","2026-07-12T07:58:45.323861",{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1705,"tags":1706,"stars":25,"repoUrl":26,"updatedAt":1716},"generate-status-report","generate project status reports for Confluence","Generate project status reports from Jira issues and publish to Confluence. When an agent needs to: (1) Create a status report for a project, (2) Summarize project progress or updates, (3) Generate weekly\u002Fdaily reports from Jira, (4) Publish status summaries to Confluence, or (5) Analyze project blockers and completion. Queries Jira issues, categorizes by status\u002Fpriority, and creates formatted reports for delivery managers and executives.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1707,1708,1709,1710,1713],{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":1711,"slug":1712,"type":15},"Project Management","project-management",{"name":1714,"slug":1715,"type":15},"Reporting","reporting","2026-07-12T07:58:38.457696",{"slug":1718,"name":1718,"fn":1719,"description":1720,"org":1721,"tags":1722,"stars":25,"repoUrl":26,"updatedAt":1733},"jira-sprint-dashboard","create Jira sprint dashboards","Create a visual Jira sprint dashboard from Jira project, space, sprint, board, filter, JQL, work item keys, or Jira URL data. Use when the user asks for a Jira sprint dashboard, standup dashboard, sprint review, delivery review, engineering manager dashboard, WIP review, planning view, closeout view, or a visual snapshot of Jira work that is more useful than a flat report. Use the richest dashboard format supported by the current agent, such as Cursor Canvas, an interactive artifact, HTML, or Markdown.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1723,1726,1729,1730],{"name":1724,"slug":1725,"type":15},"Agile","agile",{"name":1727,"slug":1728,"type":15},"Dashboards","dashboards",{"name":17,"slug":18,"type":15},{"name":1731,"slug":1732,"type":15},"Sprint Planning","sprint-planning","2026-07-12T07:58:41.031798",{"slug":4,"name":4,"fn":5,"description":6,"org":1735,"tags":1736,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1737,1738,1739,1740],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"slug":1742,"name":1742,"fn":1743,"description":1744,"org":1745,"tags":1746,"stars":25,"repoUrl":26,"updatedAt":1751},"spec-to-backlog","convert Confluence specifications to Jira backlogs","Automatically convert Confluence specification documents into structured Jira backlogs with Epics and implementation tickets. When an agent needs to: (1) Create Jira tickets from a Confluence page, (2) Generate a backlog from a specification, (3) Break down a spec into implementation tasks, or (4) Convert requirements into Jira issues. Handles reading Confluence pages, analyzing specifications, creating Epics with proper structure, and generating detailed implementation tickets linked to the Epic.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1747,1748,1749,1750],{"name":1724,"slug":1725,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":1711,"slug":1712,"type":15},"2026-07-12T07:58:37.200385",{"slug":1753,"name":1753,"fn":1754,"description":1755,"org":1756,"tags":1757,"stars":25,"repoUrl":26,"updatedAt":1766},"triage-issue","triage bug reports in Jira","Intelligently triage bug reports and error messages by searching for duplicates in Jira and offering to create new issues or add comments to existing ones. When an agent needs to: (1) Triage a bug report or error message, (2) Check if an issue is a duplicate, (3) Find similar past issues, (4) Create a new bug ticket with proper context, or (5) Add information to an existing ticket. Searches Jira for similar issues, identifies duplicates, checks fix history, and helps create well-structured bug reports.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1758,1761,1762,1763],{"name":1759,"slug":1760,"type":15},"Debugging","debugging",{"name":17,"slug":18,"type":15},{"name":1711,"slug":1712,"type":15},{"name":1764,"slug":1765,"type":15},"Triage","triage","2026-07-12T07:58:33.007343",{"slug":1768,"name":1768,"fn":1769,"description":1770,"org":1771,"tags":1772,"stars":1783,"repoUrl":1784,"updatedAt":1785},"forge-app-builder","build and deploy Atlassian Forge apps","Guides building, deploying, troubleshooting, and installing Atlassian Forge apps — custom extensions built with the Forge CLI (forge create, forge deploy, forge install). Use when the user wants to create a Forge app (issue panels, dashboard gadgets, Confluence macros, global pages), is encountering Forge CLI errors or deployment issues (e.g. forge install failures, environment errors), or needs help with Forge-specific concepts like resolvers, UI Kit, manifest scopes, or developer spaces. Do not use for general Jira configuration, automation rules, JQL queries, or Atlassian REST API usage outside of a Forge app context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1773,1774,1777,1780],{"name":9,"slug":8,"type":15},{"name":1775,"slug":1776,"type":15},"CLI","cli",{"name":1778,"slug":1779,"type":15},"Deployment","deployment",{"name":1781,"slug":1782,"type":15},"Plugin Development","plugin-development",14,"https:\u002F\u002Fgithub.com\u002Fatlassian\u002Fforge-skills","2026-07-12T07:58:52.007851",{"slug":1787,"name":1787,"fn":1788,"description":1789,"org":1790,"tags":1791,"stars":1783,"repoUrl":1784,"updatedAt":1800},"forge-app-review","review Atlassian Forge app readiness","Performs a lightweight pre-release readiness review of Atlassian Forge apps across manifest\u002Fmodule wiring, architecture, runtime compatibility, dependency posture, tests, deploy readiness, and obvious security, cost, or reliability smells. Use when the user asks \"review my Forge app\", \"pre-deploy check\", \"is this app ready to ship\", \"review manifest\", \"general app review\", \"release readiness\", or asks for a broad quality pass. Do not use for deep security audits\u002FSAST\u002Fexploitability review, cost optimization, or diagnosing a known broken app; route those to forge-security-review, forge-cost-optimizer, or forge-debugger respectively.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1792,1793,1796,1797],{"name":9,"slug":8,"type":15},{"name":1794,"slug":1795,"type":15},"Code Analysis","code-analysis",{"name":1778,"slug":1779,"type":15},{"name":1798,"slug":1799,"type":15},"QA","qa","2026-07-12T07:58:50.744672",{"slug":1802,"name":1802,"fn":1803,"description":1804,"org":1805,"tags":1806,"stars":1783,"repoUrl":1784,"updatedAt":1814},"forge-connector","build Atlassian Forge Teamwork Graph connectors","Guides building and deploying Atlassian Forge Teamwork Graph connector apps that ingest external data into Atlassian's Teamwork Graph, making it searchable in Rovo Search and surfaced in Rovo Chat. Use when the user wants to build a Forge connector, ingest external data into Atlassian, connect a third-party tool (e.g. Google Drive, ServiceNow, Salesforce) to Atlassian, make external content searchable in Rovo, build a graph:connector module, use the @forge\u002Fteamwork-graph SDK, or implement onConnectionChange \u002F validateConnection functions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1807,1810,1813],{"name":1808,"slug":1809,"type":15},"API Development","api-development",{"name":1811,"slug":1812,"type":15},"Engineering","engineering",{"name":20,"slug":21,"type":15},"2026-07-12T07:58:48.520248",{"slug":1816,"name":1816,"fn":1817,"description":1818,"org":1819,"tags":1820,"stars":1783,"repoUrl":1784,"updatedAt":1828},"forge-cost-optimizer","optimize Atlassian Forge platform costs","Optimizes Atlassian Forge apps to reduce platform consumption and avoid unnecessary costs using Atlassian's \"Optimise Forge platform costs\" guidance. Use when the user asks to optimize Forge app costs, reduce Forge invocations, lower GB-seconds, reduce storage or log usage, tune memory, replace polling, improve scheduled triggers, reduce KVS writes, move work to the frontend, use bridge APIs, batch API calls, add caching, or evaluate Forge Remote trade-offs. By default, perform an audit first and offer to make the recommended changes after presenting the audit. Only modify files immediately when the user explicitly asks the agent to implement or apply optimizations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1821,1822,1825],{"name":9,"slug":8,"type":15},{"name":1823,"slug":1824,"type":15},"Cost Optimization","cost-optimization",{"name":1826,"slug":1827,"type":15},"Operations","operations","2026-07-12T07:58:53.557299",{"slug":1830,"name":1830,"fn":1831,"description":1832,"org":1833,"tags":1834,"stars":1783,"repoUrl":1784,"updatedAt":1838},"forge-debugger","diagnose and fix Atlassian Forge apps","Diagnoses and fixes issues in Atlassian Forge apps. Use this skill whenever a Forge app has errors, crashes, shows blank UI, fails to deploy, doesn't appear after installation, has permission issues, or produces unexpected output. Trigger on any mention of forge logs, forge deploy errors, resolver errors, blank panels, missing scopes, Custom UI not rendering, production vs dev discrepancies, or any Jira\u002FConfluence app that \"stopped working\". Also trigger when the user asks to debug, troubleshoot, investigate, or fix a Forge app issue — even if they haven't used the word \"Forge\" but describe a Jira panel or Confluence macro acting up.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1835,1836,1837],{"name":9,"slug":8,"type":15},{"name":1759,"slug":1760,"type":15},{"name":1778,"slug":1779,"type":15},"2026-07-12T07:58:47.226713",{"slug":1840,"name":1840,"fn":1841,"description":1842,"org":1843,"tags":1844,"stars":1783,"repoUrl":1784,"updatedAt":1852},"forge-security-review","perform security reviews for Forge apps","Performs a white-box security review of Atlassian Forge apps using structured, Forge-specific security rules and evidence-driven reporting. Use when the user asks for a Forge security review, security audit, vuln assessment, pentest-style code review, authz review, tenant isolation analysis, web trigger hardening, or static analysis execution for a Forge app.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1845,1848,1849],{"name":1846,"slug":1847,"type":15},"Audit","audit",{"name":1794,"slug":1795,"type":15},{"name":1850,"slug":1851,"type":15},"Security","security","2026-07-12T07:58:54.806538",24,{"items":1855,"total":1899},[1856,1863,1871,1878,1885,1892],{"slug":1685,"name":1685,"fn":1686,"description":1687,"org":1857,"tags":1858,"stars":25,"repoUrl":26,"updatedAt":1700},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1859,1860,1861,1862],{"name":1691,"slug":1692,"type":15},{"name":17,"slug":18,"type":15},{"name":1695,"slug":1696,"type":15},{"name":1698,"slug":1699,"type":15},{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1864,"tags":1865,"stars":25,"repoUrl":26,"updatedAt":1716},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1866,1867,1868,1869,1870],{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":1711,"slug":1712,"type":15},{"name":1714,"slug":1715,"type":15},{"slug":1718,"name":1718,"fn":1719,"description":1720,"org":1872,"tags":1873,"stars":25,"repoUrl":26,"updatedAt":1733},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1874,1875,1876,1877],{"name":1724,"slug":1725,"type":15},{"name":1727,"slug":1728,"type":15},{"name":17,"slug":18,"type":15},{"name":1731,"slug":1732,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":1879,"tags":1880,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1881,1882,1883,1884],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"slug":1742,"name":1742,"fn":1743,"description":1744,"org":1886,"tags":1887,"stars":25,"repoUrl":26,"updatedAt":1751},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1888,1889,1890,1891],{"name":1724,"slug":1725,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":1711,"slug":1712,"type":15},{"slug":1753,"name":1753,"fn":1754,"description":1755,"org":1893,"tags":1894,"stars":25,"repoUrl":26,"updatedAt":1766},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1895,1896,1897,1898],{"name":1759,"slug":1760,"type":15},{"name":17,"slug":18,"type":15},{"name":1711,"slug":1712,"type":15},{"name":1764,"slug":1765,"type":15},6]