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

atlassian-rovo阿特拉斯罗沃

Agent Skill

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

总安装

685

周安装

28

GitHub Stars

1

下载量

220
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/shanezhong/skills --skill atlassian-rovo

简介

atlassian-rovo 结合 ACLI 和 REST API 实现自动化配置发现,支持项目、空间、页面层级遍历。

  • 它限制列表查询数量(默认最多 10 条),防止意外加载大量数据导致超时。
  • 使用前需手动输入 site URL 和 project key,避免使用默认值造成误操作。
  • API token 应限制为所需最小权限集,例如只读访问特定 Confluence space。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Atlassian ACLI + REST API Automation

Configuration Discovery

Before starting any workflow, gather these from the user or discover via CLI:

SettingHow to get itStore as
Site URLAsk user for *.atlassian.net URL{site}
Jira Project KeyAsk user, or acli jira project list{projectKey}
Confluence SpaceAsk user, or query REST API{spaceKey}
Parent PageAsk user, or use space root{parentId}

Always ask the user which project/space to use. Never assume defaults. Use --limit 10 for all Jira list operations and limit=10 for Confluence REST API calls.


Setup & Authentication

For full setup, API token generation, and troubleshooting, see setup.md.

Quick config — add a .env file to your project root:

ATLASSIAN_EMAIL="you@example.com"
ATLASSIAN_API_TOKEN="your-api-token-here"
ATLASSIAN_SITE="https://yoursite.atlassian.net"

Install ACLI and authenticate:

brew tap atlassian/homebrew-acli && brew install acli
set -a; source .env; set +a
# ACLI expects the bare domain, not the full URL — strip the https:// prefix
ACLI_SITE="${ATLASSIAN_SITE#https://}"
acli jira auth login \
  --site "$ACLI_SITE" \
  --email "$ATLASSIAN_EMAIL" \
  --token < <(echo "$ATLASSIAN_API_TOKEN")

For Confluence, use the REST API via curl with basic auth:

curl -s -u "$ATLASSIAN_EMAIL:$ATLASSIAN_API_TOKEN" \
  "$ATLASSIAN_SITE/wiki/rest/api/content" ...

See reference/atlassian-helpers.sh for convenience shell functions.

For image upload configuration, see image-upload.md. For git branch integration (GitHub/Bitbucket), see git-integration.md. For Confluence comment operations, see confluence-comments.md.


Agentic Project Management Workflow

Full lifecycle project management using Jira + Confluence.

Execution Modes

This workflow supports two modes:

  • Multi-Agent Mode (Claude Code with Agent Teams): Parallel execution with TeamCreate/TaskCreate orchestration. Requires CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 in ~/.claude/settings.json.
  • Single-Agent Mode (all agents): Sequential execution — one workstream at a time. Same Jira tracking and Confluence updates, no multi-agent dependencies.

Prerequisites

  • ACLI installed and authenticated (Jira)
  • API token configured in .env (Confluence REST API)
  • For multi-agent mode: Claude Code with CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1

The 4-Phase Cycle

Phase 1: INTAKE   -> User describes request -> Confluence plan + Jira Epic
Phase 2: EXECUTE  -> Agent team works tickets with Jira tracking
Phase 3: RESUME   -> New session resumes from Jira state (fully autonomous)
Phase 4: COMPLETE -> All tickets Done -> Epic closed -> summary delivered

Phase 1: Intake & Planning

Classify the request, create Confluence plan page, Jira Epic with [AI-PM] prefix, child tickets per workstream, link dependencies, then present plan to user for confirmation.

See phase-planning.md for step-by-step details and templates.

Phase 2: Execution

Multi-agent mode: Create agent team, map tickets to tasks with dependency tracking, spawn teammates with standard prompt. Orchestrator monitors progress and updates Confluence plan page.

Single-agent mode: Work each ticket sequentially, respecting dependency order. Track progress via Jira transitions and Confluence updates.

See phase-execution.md for both modes (multi-agent and single-agent workflows). Both modes share common protocols for transitions, branch creation, and publishing — see common-patterns.md.

Phase 3: Resume

Auto-detect open [AI-PM] Epics, read Confluence plan, query incomplete tickets, classify state.

Multi-agent mode: Spin up right-sized team for remaining work. Single-agent mode: Pick up the next incomplete ticket and continue sequentially.

See phase-resume.md for both modes (resume protocol and JQL patterns).

Phase 4: Completion

Update Confluence page status, transition Epic to Done, add final summary comment, report deliverables to user.

See phase-completion.md for completion checklist.

Team Sizing (Multi-Agent Mode)

Request TypeTeam SizeRoles
Small change2lead + implementer
Feature dev3-4lead + backend + frontend + (tester)
Research3lead + 2 researchers
Content3lead + writer + reviewer
Multi-component4-5lead + 1 per component

One ticket per teammate. Lead coordinates only (no workstream tasks). Min team = 2.

Key Constraints

  • [AI-PM] prefix on all managed Epics — the resume phase uses JQL summary ~ "\\[AI-PM\\]" to auto-detect managed Epics.
  • One writer per resource — Confluence uses optimistic locking with version numbers. Concurrent writes cause version conflicts and data loss. Only one agent should update a given page/issue at a time.
  • --limit 10 on all Jira list operations; limit=10 on all Confluence REST calls — larger result sets consume excessive tokens.
  • Transition to In Progress when work starts — this signals to other agents (and the resume phase) that a ticket is actively being worked.
  • Assign tickets when starting work — use acli jira workitem edit --key {key} --assignee "@me". Unassigned tickets look abandoned during resume.
  • Publish findings as child pages of the plan page (using parentId) — keeps all deliverables organized under one parent.
  • GET before PUT for Confluence — the REST API PUT replaces the entire body. Always read the current version first, then PUT with incremented version number. Also check for inline/footer comments before updating — users leave review feedback as comments.
  • JQL != workaround — ACLI escapes ! in JQL. Use NOT IN (Done) instead of != Done.
  • JQL [ / ] escaping — square brackets are JQL range-query operators. Use \[AI-PM\] (escaped) in summary ~ queries, not [AI-PM].
  • Confluence search uses v1 API — CQL search for pages must use /wiki/rest/api/content/search, not v2 /search.
  • Comment replies use v1 API — creating threaded replies requires POST /wiki/rest/api/content with ancestors array. The v2 children endpoint returns 405. See confluence-comments.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.48%
按下载量换算76

Claude

32.68%
按下载量换算72

Cursor

17.33%
按下载量换算38

Gemini CLI

8.57%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills