Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

sourcing-from-atlassian来自 Atlassian 的采购

Agent Skill

sourcing-from-atlassian 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

499

周安装

21

GitHub Stars

5

下载量

175
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sourcing-from-atlassian(来自 Atlassian 的采购)
来源仓库:https://github.com/wizeline/sdlc-agents
仓库路径:skills/sourcing-from-atlassian
安装命令:
npx skills add https://github.com/wizeline/sdlc-agents --skill sourcing-from-atlassian
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/wizeline/sdlc-agents --skill sourcing-from-atlassian

简介

sourcing-from-atlassian 解析 Atlassian 产品(如 Jira)问题字段并提取结构化信息。

  • 适用于敏捷开发流程梳理、需求追溯或缺陷管理自动化场景。
  • 自动识别验收标准、史诗链接与相关人员,生成 GAP 分析报告。
  • 依赖具体项目的字段配置,非标准自定义字段可能解析失败。
  • 输出仅为数据转译,不包含业务判断,需人工复核关键结论准确性。

SKILL.md

Sourcing from Atlassian — MCP Retrieval Skill

Overview

This skill defines the exact procedures for retrieving documentation source material from Jira and Confluence via the Atlassian MCP server. It covers connection setup, query patterns, field extraction maps, pagination, and the canonical source bundle format consumed by the doc-engineer and c4-architect agents.


1. Connection Bootstrap

Before any retrieval, establish the Atlassian context. Do this once per session.

Step 1: Call getAccessibleAtlassianResources
  → Returns: list of { id (cloudId), name, url, scopes }
  → Select the cloudId that matches the user's workspace

Step 2: Call atlassianUserInfo
  → Confirms identity and available permissions
  → If permissions are insufficient, surface the specific missing scope to the user

Step 3: Store cloudId in working context for all subsequent calls

If the user provides a Jira URL (e.g., https://myorg.atlassian.net), extract the subdomain as the workspace identifier and confirm it matches a cloudId from step 1.


2. Jira Retrieval Patterns

2a. Fetch a Single Issue

Tool: getJiraIssue Input: {issueKey: "PROJ-123", cloudId} Extract these fields:

FieldJira pathPurpose
Summaryfields.summaryIssue title
Descriptionfields.description (Atlassian Document Format → plain text)Body content
Statusfields.status.nameIs this story still active?
Priorityfields.priority.nameInforms documentation urgency
Issue typefields.issuetype.nameStory / Bug / Epic / Task
Acceptance Criteriafields.customfield_10016 OR look for "Acceptance Criteria" heading in descriptionCore doc input
Labelsfields.labels[]Feature tagging
Epic linkfields.customfield_10014 OR fields.parent.key (Next-gen)Upward traceability
Linked issuesfields.issuelinks[]Related items
Assigneefields.assignee.displayNameSME to contact for gaps
Reporterfields.reporter.displayNameOriginal requester
Created / Updatedfields.created, fields.updatedStaleness check
Fix versionfields.fixVersions[]Release mapping
Attachmentsfields.attachment[]Supplementary files
Comments (last 5)fields.comment.comments[-5:]Late-breaking decisions

Acceptance Criteria extraction rules:

  1. Check customfield_10016 first (standard AC field in many Jira configs)
  2. If empty, scan the issue description for a section headed "Acceptance Criteria", "AC", "Given/When/Then", or a numbered list immediately following "Definition of Done"
  3. If still empty, mark as [MISSING AC] in the gap report

2b. Search Issues by JQL

Tool: searchJiraIssuesUsingJql

Common JQL patterns for documentation sourcing:

-- All stories in an epic (classic projects)
"Epic Link" = PROJ-42 AND issuetype = Story ORDER BY created ASC

-- All stories in an epic (next-gen / team-managed)
issueType = Story AND parentEpic = PROJ-42

-- All issues in a sprint
project = PROJ AND sprint in openSprints() ORDER BY rank ASC

-- All issues for a release
project = PROJ AND fixVersion = "v2.1.0" ORDER BY issuetype ASC

-- Recent changes to a feature area
project = PROJ AND labels = "auth-service" AND updated >= -30d

-- Completed stories for release notes
project = PROJ AND issuetype = Story AND status = Done
  AND fixVersion = "v2.1.0" ORDER BY priority ASC

-- All bugs in scope
project = PROJ AND issuetype = Bug AND status != Done
  AND affectedVersion = "v2.0.0"

Pagination:

  • Request maxResults: 50 per call
  • If total > startAt + maxResults, increment startAt and repeat
  • Cap total retrieval at 200 issues; if more exist, ask the user to narrow scope

Field projection: Always request fields=summary,description,status,priority,issuetype,customfield_10016,labels,issuelinks,assignee,reporter,created,updated,fixVersions,customfield_10014,parent

2c. Fetch an Epic with All Children

1. getJiraIssue(epicKey) → store epic summary, description, goal
2. searchJiraIssuesUsingJql('"Epic Link" = <epicKey>') → classic projects
3. searchJiraIssuesUsingJql('parentEpic = <epicKey>') → next-gen projects
4. Merge results, deduplicate by issue key
5. For each child story: extract fields per 2a

3. Confluence Retrieval Patterns

3a. Fetch a Single Page

Tool: getConfluencePage Input: {pageId: "123456", cloudId}

Extract:

FieldPurpose
titlePage heading
space.key and space.nameNamespace for traceability
body.storage.value (HTML/ADF) or body.view.valueFull content
version.number and version.whenStaleness check
version.by.displayNameLast editor (SME)
ancestors[]Page hierarchy context
children.page[] (if any)Sub-pages to recursively fetch

Content cleaning:

  • Strip HTML tags to markdown-equivalent structure: headings → ##, <table> → markdown table, <code> → fenced code block
  • Preserve macro outputs (info panels, expand blocks) as blockquotes with > [INFO] prefix
  • Remove navigation elements, breadcrumbs, footer macros
  • Preserve all technical content verbatim — do not summarize

3b. Search Pages by CQL

Tool: searchConfluenceUsingCql

Common CQL patterns:

-- Find pages by title keyword in a specific space
type = page AND space = "ENG" AND title ~ "authentication"

-- Find recently modified pages in a space
type = page AND space = "ENG" AND lastModified >= "2024-01-01"

-- Find pages related to a Jira epic
type = page AND text ~ "PROJ-42"

-- Find pages with a specific label
type = page AND label = "api-design" AND space = "ENG"

-- Find all pages in a space updated this quarter
type = page AND space = "ENG" AND lastModified >= startOfQuarter()

-- Find design documents
type = page AND title ~ "design" AND space in ("ENG","ARCH")

Pagination:

  • Use limit: 25 per call
  • Check _links.next for additional pages
  • Cap at 50 pages; if more exist, ask user to narrow

3c. Map Jira Issues to Confluence Pages

After retrieving Jira issues, find associated Confluence pages:

For each Jira issue key (e.g., PROJ-123):
  1. searchConfluenceUsingCql('text ~ "PROJ-123"')
  2. Also check issue links for "Confluence Page" remote links via getJiraIssueRemoteIssueLinks
  3. Add found pages to the traceability index

4. Field Mapping to Documentation Concepts

Use this table to map Atlassian fields to documentation sections:

Atlassian fieldDocumentation section
Epic summary + descriptionFeature overview / introduction
Story summaryFeature name / section heading
Acceptance criteriaFunctional requirements, expected behavior
Description bodyBackground, context, technical notes
LabelsTags, categories, audience hints
Fix versionRelease notes scope
Linked bugsKnown issues, limitations
Confluence page bodyArchitecture context, design rationale, specs
Confluence page ancestorsDocument hierarchy, related guides
Comments (resolved)Historical decisions, rationale (use sparingly)

5. Staleness and Quality Checks

Run these checks on every retrieved item before including in the bundle:

CheckConditionAction
Story without ACcustomfield_10016 is null AND no AC section in descriptionFlag [MISSING AC] in gap report
Stale Confluence pagelastModified > 90 days AND related Jira stories are activeFlag [STALE - verify]
Closed story in scopestatus.name in ["Done", "Closed", "Won't Do"]Include but mark [CLOSED] — may be release notes source
ContradictionTwo sources disagree on same factFlag [CONTRADICTION] with both sources cited
Missing AC definitionStory is "In Progress" or "Done" but has no ACFlag as high-priority gap
Version mismatchFix version on story doesn't match Confluence page's stated versionFlag [VERSION MISMATCH]

6. Source Bundle Format

Every invocation of this skill must produce output in exactly this format:

# Atlassian Source Bundle

**Generated:** <ISO 8601 timestamp>
**Cloud:** <cloudId> (<workspace name>)
**Scope:** <brief description of what was fetched>
**Total Jira issues:** <n>
**Total Confluence pages:** <n>

---

## Jira Sources

### Epic: <KEY> — <Summary>
- **Status:** <status>
- **Fix Version:** <version or "unset">
- **Description:**
  <cleaned epic description>
- **Business Goal:**
  <goal field or extracted from description>

---

### User Stories

#### <KEY>: <Summary>
- **Type:** <issuetype>
- **Status:** <status> | **Priority:** <priority>
- **Assignee:** <name or "unassigned">
- **Fix Version:** <version>
- **Labels:** <label1>, <label2>

**Acceptance Criteria:**
1. <criterion>
2. <criterion>

**Description:**
<cleaned description body>

**Linked Issues:** <KEY1 (Blocks)>, <KEY2 (Relates to)>

**Notes from Comments:**
<relevant resolved comments — skip trivial/status updates>

---

[Repeat per story]

---

## Confluence Sources

### <Page Title>
- **Space:** <SPACE_KEY> | **Page ID:** <id>
- **Last Modified:** <date> by <author name>
- **URL:** <full URL>
- **Version:** <n>

**Content:**

<cleaned, markdown-formatted page body>

---

[Repeat per page]

---

## Gap Report

| # | Severity | Location | Issue | Recommended Action |
|---|----------|----------|-------|--------------------|
| 1 | 🔴 Blocker | KEY-123 | No acceptance criteria | Request from Product Owner before drafting |
| 2 | 🟡 Warning | Confluence "Auth Design" | Not updated in 4 months | Verify still accurate with page owner |
| 3 | 🟡 Warning | KEY-456 vs "API Spec v3" | Contradiction: AC says JWT, spec says session cookie | Resolve before writing auth docs |
| 4 | ⚪ Info | KEY-789 | Status is "Done" — use for release notes only | Include in release notes section |

---

## Traceability Index

| Jira Key | Summary | Status | Confluence Pages |
|----------|---------|--------|-----------------|
| KEY-123 | User login | In Progress | "Auth Design", "Login Flow Spec" |
| KEY-456 | Dashboard | Done | — |

---

## Recommended Next Step

<One sentence recommending which doc-engineer action to invoke next and why.>
For example: "Pass this bundle to doc-engineer using authoring-user-docs — the acceptance criteria map directly to tutorial steps for the login flow."

7. Error Handling

ErrorResponse
MCP connection failureReport: tool name, parameters, error message. Do not retry silently.
Issue not found (404)Mark as [NOT FOUND: KEY-XXX] in the bundle. Continue with remaining items.
Permission denied (403)Report which resource requires elevated access. Surface to user.
Rate limit (429)Wait per Retry-After header; note delay in bundle header.
Empty search resultsReturn bundle with empty sections and note the JQL/CQL used, so the user can adjust.
ADF parse failureInclude raw content with [RAW - parse failed] prefix.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.55%
按下载量换算64

Claude

27.89%
按下载量换算49

Cursor

17.38%
按下载量换算30

Gemini CLI

8.99%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills