smithery/neversight

confluence-cli

查询、检索与?

Installation

$ npx skills add smithery/neversight --skill confluence-cli

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,113 B
  • docs SUMMARY.md 74 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

说明:以下调用方式均以当前 SKILL.md 文件所在文件夹为 workdir。

  1. 常用子命令(覆盖日常场景)
  • space

- list [--start --limit --expand] - get --space-key [--expand]

  • page

- get --page-id [--body-format --expand] - by-title --space-key --title [--body-format --expand] - children --page-id [--start --limit --expand] - publish-markdown --parent-id --title --markdown-path [--update-if-exists --body-format --expand]

  • attachment

- list --page-id [--start --limit --expand] - download --page-id [--output-dir --name --filter --all --start --limit --expand]

  • search

- --cql [--start --limit --body-format --expand]

  1. 输出格式
  • 所有调用统一在脚本后、子命令前加 --json(示例:./scripts/confluence_cli.py --json page get --page-id ...
  1. 冷门参数/字段怎么查
  • 运行 ./scripts/confluence_cli.py <command> --help 查看该命令的参数
  • 需要更深入的 Confluence API 字段时,可扩展脚本中的 expand 参数
  1. 附件下载示例
  • 下载指定附件(可重复传入 --name):./scripts/confluence_cli.py attachment download --page-id 3060336952 --output-dir ./attachments --name a.png --name b.png
  • 下载全部附件(自动分页):./scripts/confluence_cli.py attachment download --page-id 3060336952 --all --output-dir ./attachments
  • 过滤下载(正则):./scripts/confluencecli.py attachment download --page-id 3060336952 --filter 'image2026-1-19.*\\.png' --all --output-dir ./attachments
  1. 发布 Markdown 示例
  • 发布到父页面(同名则更新):./scripts/confluence_cli.py --json page publish-markdown --parent-id 3061931928 --title "批量重置 Offset 功能测试" --markdown-path /path/to/doc.md

资源

  • [confluencecli.py](scripts/confluencecli.py):主 CLI 入口,负责读取配置并发起 API 调用。
  • [confluenceapiclient.py](scripts/confluenceapiclient.py):SDK 封装层,收敛常用 API 调用。