Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

atlassian-reader阿特拉斯读者

Agent Skill

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

总安装

659

周安装

28

GitHub Stars

84

下载量

231
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bitwarden/ai-plugins --skill atlassian-reader

简介

atlassian-reader 提供只读访问 Jira 和 Confluence 的能力,基于 Bitwarden 的 scoped read-only token。

  • 它通过 api.atlassian.com 网关转发 curl 请求,绝不执行任何写操作,保障数据安全。
  • 适用于快速检索需求文档、查看缺陷详情或同步外部系统元数据,无需开通完整 API 权限。
  • Cloud ID 和 API token 必须来自同一 Atlassian 实例,否则会导致认证失败。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Atlassian Reader

Read-only access to Jira and Confluence via Atlassian Cloud REST APIs using scoped read-only API tokens. All operations use curl with Basic Auth through the Atlassian API gateway (api.atlassian.com). Never create, update, or delete any Atlassian resource.

1. Environment Variables

This skill requires four environment variables. Do not run any verification commands — go straight to the API call. If it fails, consult the error handling section (Section 11) to diagnose the cause and guide the user.

VariablePurpose
ATLASSIAN_CLOUD_IDBitwarden Atlassian Cloud ID (find it at https://bitwarden.atlassian.net/_edge/tenant_info)
ATLASSIAN_EMAILEmail address associated with the Atlassian account
ATLASSIAN_JIRA_READ_ONLY_TOKENScoped Jira API token with read permissions only (create one here)
ATLASSIAN_CONFLUENCE_READ_ONLY_TOKENScoped Confluence API token with read permissions only (create one here)

Why two tokens? Atlassian scoped tokens are per-product. A Jira-scoped token cannot access Confluence and vice versa. This enforces least-privilege: each token only has read access to its respective product.

2. Discovery

Use when the user doesn't specify a project key or space key, or asks what they have access to.

List Jira Projects

curl -s --connect-timeout 10 --max-time 30 \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_JIRA_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  "https://api.atlassian.com/ex/jira/${ATLASSIAN_CLOUD_ID}/rest/api/3/project" | jq .

Present as a table: Key, Name, Type. Use the project key to resolve {{PROJECT}} in subsequent JQL or board queries.

List Confluence Spaces

curl -s --connect-timeout 10 --max-time 30 \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_CONFLUENCE_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  "https://api.atlassian.com/ex/confluence/${ATLASSIAN_CLOUD_ID}/rest/api/space?limit=25&type=global" | jq .

Present as a table: Key, Name, Type. Use the space key to resolve {{SPACE_KEY}} in subsequent CQL queries.

3. Read Jira Issue

Use when the user references a ticket ID like PROJ-123, asks about a story, or wants issue details.

curl -s --connect-timeout 10 --max-time 30 \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_JIRA_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  "https://api.atlassian.com/ex/jira/${ATLASSIAN_CLOUD_ID}/rest/api/3/issue/{{TICKET_ID}}?fields=summary,description,status,issuetype,priority,assignee,reporter,comment,subtasks,issuelinks,parent,labels,components,sprint,customfield_10192&expand=renderedFields" | jq .

Replace {{TICKET_ID}} with the actual issue key (e.g. PROJ-123).

Presentation instructions:

  • Summary: Show the issue title, type, status, priority, and assignee prominently
  • Description: Read renderedFields.description (HTML) and present as clean markdown
  • Acceptance Criteria: Check renderedFields.customfield_10192 for acceptance criteria content (this is the dedicated A/C field in Bitwarden's Jira instance). If that field is empty or absent, fall back to looking for A/C headings, checklists, or "Acceptance Criteria" sections within the description
  • Children (Epics/Features): If the issue type is Epic or Feature, fields.subtasks may be empty — next-gen Jira projects use parent relationships instead of subtask links. When reading an epic, always perform a follow-up JQL search using parent = {{TICKET_ID}} (Section 5) to discover child issues
  • Subtasks: If fields.subtasks is non-empty, list each with key, summary, and status
  • Links: If fields.issuelinks is non-empty, list linked issues grouped by link type (e.g. "blocks", "is blocked by", "relates to")
  • Parent: If fields.parent exists, mention the parent epic/story
  • Comments: Show the last 3 comments from fields.comment.comments (sorted newest first). For each, show author display name, date, and body
  • Never dump raw JSON unless the user explicitly asks for it

4. Read Jira Issue Comments

Use when more comments are needed beyond what the issue endpoint returned, or when the user asks specifically for comment history.

curl -s --connect-timeout 10 --max-time 30 \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_JIRA_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  "https://api.atlassian.com/ex/jira/${ATLASSIAN_CLOUD_ID}/rest/api/3/issue/{{TICKET_ID}}/comment?orderBy=-created&maxResults=10" | jq .

Replace {{TICKET_ID}} with the issue key.

Presentation instructions:

  • Show each comment with: author display name, created date, and body text
  • The body is in Atlassian Document Format (ADF) — read the content nodes and render as markdown
  • If there are more comments than returned, mention the total count from the response

5. Search Jira (JQL)

Use when the user asks about sprint contents, epic children, text search across issues, or any bulk issue query.

API Note: Atlassian removed the legacy /rest/api/3/search endpoint (see CHANGE-2046). Always use /rest/api/3/search/jql instead.
curl -s --connect-timeout 10 --max-time 30 -G \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_JIRA_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  --data-urlencode "jql={{JQL}}" \
  "https://api.atlassian.com/ex/jira/${ATLASSIAN_CLOUD_ID}/rest/api/3/search/jql?maxResults=20&fields=summary,status,issuetype,priority,assignee,parent" | jq .

Replace {{JQL}} with the user's query. URL-encode special characters.

Common JQL patterns (suggest these to the user when relevant):

Use caseJQL
Active sprint issuesproject = {{PROJECT}} AND sprint in openSprints()
Epic children (next-gen)parent = {{EPIC_KEY}}
Epic children (classic)"Epic Link" = {{EPIC_KEY}}
Full text searchtext ~ "{{SEARCH_TERM}}"
Linked issuesissuekey in linkedIssues({{TICKET_ID}})
My open issuesassignee = currentUser() AND resolution = Unresolved
Recently updatedproject = {{PROJECT}} AND updated >= -7d ORDER BY updated DESC

Presentation instructions:

  • Present results as a table with columns: Key, Type, Summary, Status, Priority, Assignee
  • Include the parent epic key if present
  • The new /search/jql endpoint uses cursor-based pagination: check isLast (boolean) to determine if more pages exist, rather than the legacy total field. If isLast is false, note that results were truncated

6. Read Confluence Page

Use when the user shares a Confluence URL or page ID, or when a Jira issue links to Confluence content.

curl -s --connect-timeout 10 --max-time 30 \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_CONFLUENCE_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  "https://api.atlassian.com/ex/confluence/${ATLASSIAN_CLOUD_ID}/rest/api/content/{{PAGE_ID}}?expand=body.storage,version,space,ancestors" | jq .

Replace {{PAGE_ID}} with the numeric page ID.

Extracting the page ID from a Confluence URL:

  • URL format: https://domain.atlassian.net/wiki/spaces/SPACE/pages/123456789/Page+Title → page ID is 123456789
  • URL format: https://domain.atlassian.net/wiki/x/AbCdEf → this is a tiny URL; fetch it and extract the page ID from the redirect or resolved content

Presentation instructions:

  • Show: page title, space name, version number, last modified info
  • Show breadcrumb path from ancestors array (top-level → parent → current page)
  • The body.storage.value field contains HTML — read it and convert to clean markdown in your response
  • For large pages, summarize the key sections relevant to the user's current task rather than reproducing the entire page
  • If the page contains tables, preserve table formatting

7. Search Confluence (CQL)

Use when the user wants to find Confluence pages by keyword, label, or space.

curl -s --connect-timeout 10 --max-time 30 -G \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_CONFLUENCE_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  --data-urlencode "cql={{CQL}}" \
  "https://api.atlassian.com/ex/confluence/${ATLASSIAN_CLOUD_ID}/rest/api/content/search?limit=10" | jq .

Replace {{CQL}} with the query. URL-encode special characters.

Common CQL patterns:

Use caseCQL
Text searchtext ~ "{{SEARCH_TERM}}"
Space + textspace = "{{SPACE_KEY}}" AND text ~ "{{SEARCH_TERM}}"
Label filterlabel = "{{LABEL}}"
Space + labelspace = "{{SPACE_KEY}}" AND label = "{{LABEL}}"
Pages under ancestorancestor = {{PAGE_ID}}
Recently modifiedlastModified >= "2024-01-01" AND space = "{{SPACE_KEY}}"

Presentation instructions:

  • List results with: title, space name, last modified date, and a brief excerpt if available
  • Show total result count and note if truncated

8. Confluence Child Pages

Use when the user wants to see subpages under a Confluence page, or when exploring a documentation tree.

curl -s --connect-timeout 10 --max-time 30 \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_CONFLUENCE_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  "https://api.atlassian.com/ex/confluence/${ATLASSIAN_CLOUD_ID}/rest/api/content/{{PAGE_ID}}/child/page?limit=25&expand=version" | jq .

Replace {{PAGE_ID}} with the parent page ID.

Presentation instructions:

  • List child pages with: title, page ID, version number, and last modified date
  • If there are many children, present as a numbered list

9. Boards and Sprints

Use when the user asks about sprint status, board configuration, or wants to see what's in the current sprint.

List Boards

curl -s --connect-timeout 10 --max-time 30 \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_JIRA_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  "https://api.atlassian.com/ex/jira/${ATLASSIAN_CLOUD_ID}/rest/agile/1.0/board?projectKeyOrId={{PROJECT_KEY}}" | jq .

Replace {{PROJECT_KEY}} with the project key (e.g. PROJ).

Get Active Sprint

curl -s --connect-timeout 10 --max-time 30 \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_JIRA_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  "https://api.atlassian.com/ex/jira/${ATLASSIAN_CLOUD_ID}/rest/agile/1.0/board/{{BOARD_ID}}/sprint?state=active" | jq .

Replace {{BOARD_ID}} with the board ID from the previous call.

Get Sprint Issues

curl -s --connect-timeout 10 --max-time 30 \
  -H "Authorization: Basic $(printf '%s:%s' "$ATLASSIAN_EMAIL" "$ATLASSIAN_JIRA_READ_ONLY_TOKEN" | base64)" \
  -H "Accept: application/json" \
  "https://api.atlassian.com/ex/jira/${ATLASSIAN_CLOUD_ID}/rest/agile/1.0/sprint/{{SPRINT_ID}}/issue?fields=summary,status,issuetype,priority,assignee" | jq .

Replace {{SPRINT_ID}} with the sprint ID from the previous call.

Workflow: To answer "what's in the current sprint?", chain the three calls: list boards → get active sprint → get sprint issues.

Presentation instructions:

  • Show sprint name, goal (if set), start/end dates, and state
  • Present sprint issues as a table: Key, Type, Summary, Status, Priority, Assignee
  • Group by status if helpful (To Do, In Progress, Done)

10. Context Budget Guidance

Always summarize — never dump raw JSON unless explicitly asked.

  • Jira issues: Lead with status, summary, and assignee. Show description as markdown. Append subtasks and links only if present.
  • Confluence pages: Convert HTML body to markdown. For large pages (>2000 words), summarize sections relevant to the user's current task and offer to read specific sections in detail.
  • Sprint boards: Present as a status-grouped table. Include completion counts (e.g. "12 of 20 issues done").
  • Search results: Present as a compact table. Never expand every result — list summaries and let the user pick which to read in full.
  • Comments: Show the 3 most recent unless the user asks for more.

11. Error Handling

HTTP StatusMeaningFix
401 UnauthorizedInvalid or expired API tokenAsk user to verify the relevant token (ATLASSIAN_JIRA_READ_ONLY_TOKEN or ATLASSIAN_CONFLUENCE_READ_ONLY_TOKEN). Tokens can be regenerated at Atlassian API tokens.
403 ForbiddenToken is valid but lacks permission for this resourceCheck that the scoped token has the correct read scope for the product. The Jira token needs read:jira-work scope; the Confluence token needs read:confluence-content.all scope. Also verify the user has access to the project/space.
404 Not FoundIssue, page, or resource does not existVerify the ticket ID, page ID, or URL. Check for typos. The resource may have been deleted or moved.
200 with errorMessagesAPI endpoint has been removed or deprecatedAtlassian periodically retires old API versions. If the response contains "The requested API has been removed", check the Atlassian changelog for migration guidance and update the endpoint URL in this skill.

Never expose tokens: Do not echo, log, or include token values in output when debugging authentication failures. Refer to tokens by variable name only.

Wrong token for wrong product: If a Jira call returns 401 but the token is valid, check that you're using ATLASSIAN_JIRA_READ_ONLY_TOKEN (not the Confluence token) and vice versa.

Missing environment variable detection: If a curl command returns a connection error or malformed URL, check whether ATLASSIAN_CLOUD_ID, ATLASSIAN_EMAIL, ATLASSIAN_JIRA_READ_ONLY_TOKEN, or ATLASSIAN_CONFLUENCE_READ_ONLY_TOKEN is unset and ask the user to set them (see Section 1).

Rate limiting: Atlassian Cloud APIs have rate limits. If you receive a 429 response, wait a moment before retrying. For batch operations, add a small delay between requests.

12. Cross-Plugin Enrichment

After reading Jira or Confluence content, sibling plugin skills can provide deeper analysis:

Security Context (bitwarden-security-engineer plugin)

  • Security-tagged tickets → when a Jira issue has security labels, components, or mentions vulnerabilities, activate Skill(bitwarden-security-context) to provide Bitwarden's security principles and vocabulary for interpreting the issue's security requirements

Development Context (bitwarden-software-engineer plugin)

  • Technical specs or architecture docs → when reading Confluence pages with technical specifications, note that Skill(writing-server-code), Skill(writing-client-code), and Skill(writing-database-queries) can validate whether specifications align with Bitwarden's actual development conventions

These skills are optional. If unavailable, present the raw Atlassian content without additional analysis.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.22%
按下载量换算86

Claude

31.38%
按下载量换算72

Cursor

19.42%
按下载量换算45

Gemini CLI

8.79%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills