confluence-cli 1.28.0 → 1.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +18 -0
- package/README.md +15 -4
- package/bin/confluence.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +3 -2
- package/plugins/confluence/.claude-plugin/plugin.json +17 -0
- package/plugins/confluence/README.md +27 -0
- package/{.claude → plugins/confluence}/skills/confluence/SKILL.md +2 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
|
|
3
|
+
"name": "pchuri-confluence-cli",
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "pchuri"
|
|
6
|
+
},
|
|
7
|
+
"metadata": {
|
|
8
|
+
"description": "Claude Code plugins for Atlassian Confluence CLI.",
|
|
9
|
+
"version": "1.0.0"
|
|
10
|
+
},
|
|
11
|
+
"plugins": [
|
|
12
|
+
{
|
|
13
|
+
"name": "confluence",
|
|
14
|
+
"description": "Use confluence-cli to read, search, create, update, move, delete, and convert Confluence pages and attachments from the terminal.",
|
|
15
|
+
"source": "./plugins/confluence"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
package/README.md
CHANGED
|
@@ -40,17 +40,28 @@ Or run directly with npx:
|
|
|
40
40
|
npx confluence-cli
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
## Claude Code
|
|
43
|
+
## Claude Code Integration
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
confluence-cli ships as a [Claude Code plugin](https://docs.anthropic.com/en/docs/claude-code/plugins). Once installed, Claude Code understands all confluence-cli commands automatically and receives updates when the skill is improved.
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
### Option 1: Install as Plugin (recommended)
|
|
48
|
+
|
|
49
|
+
Add the marketplace and install the plugin:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
/plugin marketplace add pchuri/confluence-cli
|
|
53
|
+
/plugin install confluence@pchuri-confluence-cli
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Option 2: Install Skill manually
|
|
57
|
+
|
|
58
|
+
If you prefer not to use the plugin system, copy the skill documentation into your project:
|
|
48
59
|
|
|
49
60
|
```bash
|
|
50
61
|
confluence install-skill
|
|
51
62
|
```
|
|
52
63
|
|
|
53
|
-
This creates `.claude/skills/confluence/SKILL.md` in your current directory. Claude Code picks it up automatically
|
|
64
|
+
This creates `.claude/skills/confluence/SKILL.md` in your current directory. Claude Code picks it up automatically.
|
|
54
65
|
|
|
55
66
|
## Quick Start
|
|
56
67
|
|
package/bin/confluence.js
CHANGED
|
@@ -167,7 +167,7 @@ program
|
|
|
167
167
|
const fs = require('fs');
|
|
168
168
|
const path = require('path');
|
|
169
169
|
|
|
170
|
-
const skillSrc = path.join(__dirname, '..', '
|
|
170
|
+
const skillSrc = path.join(__dirname, '..', 'plugins', 'confluence', 'skills', 'confluence', 'SKILL.md');
|
|
171
171
|
|
|
172
172
|
if (!fs.existsSync(skillSrc)) {
|
|
173
173
|
console.error(chalk.red('Error: skill file not found in package. Try reinstalling confluence-cli.'));
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "confluence-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.29.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "confluence-cli",
|
|
9
|
-
"version": "1.
|
|
9
|
+
"version": "1.29.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"axios": "^1.12.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "confluence-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.29.0",
|
|
4
4
|
"description": "A command-line interface for Atlassian Confluence with page creation and editing capabilities",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -58,7 +58,8 @@
|
|
|
58
58
|
"files": [
|
|
59
59
|
"bin/",
|
|
60
60
|
"lib/",
|
|
61
|
-
"
|
|
61
|
+
"plugins/",
|
|
62
|
+
".claude-plugin/",
|
|
62
63
|
"npm-shrinkwrap.json"
|
|
63
64
|
]
|
|
64
65
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "confluence",
|
|
3
|
+
"description": "Use confluence-cli to read, search, create, update, move, delete, and convert Confluence pages and attachments from the terminal.",
|
|
4
|
+
"author": {
|
|
5
|
+
"name": "pchuri"
|
|
6
|
+
},
|
|
7
|
+
"homepage": "https://github.com/pchuri/confluence-cli#readme",
|
|
8
|
+
"repository": "https://github.com/pchuri/confluence-cli",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"confluence",
|
|
12
|
+
"atlassian",
|
|
13
|
+
"wiki",
|
|
14
|
+
"documentation",
|
|
15
|
+
"cli"
|
|
16
|
+
]
|
|
17
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# confluence
|
|
2
|
+
|
|
3
|
+
A Claude Code plugin for [confluence-cli](https://github.com/pchuri/confluence-cli). Gives Claude Code full knowledge of all confluence-cli commands so it can read, search, create, update, move, delete, and convert Confluence pages and attachments on your behalf.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add the marketplace and install the plugin:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
/plugin marketplace add pchuri/confluence-cli
|
|
11
|
+
/plugin install confluence@pchuri-confluence-cli
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Prerequisites
|
|
15
|
+
|
|
16
|
+
confluence-cli must be installed and configured:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install -g confluence-cli
|
|
20
|
+
confluence init
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
See the [main README](../../README.md) for full configuration options.
|
|
24
|
+
|
|
25
|
+
## What this plugin provides
|
|
26
|
+
|
|
27
|
+
- **Skill: confluence** (model-invoked) — Claude Code automatically activates this skill when your task involves Confluence. It covers all 30+ CLI commands, configuration, common workflows, and error handling.
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: confluence
|
|
3
3
|
description: Use confluence-cli to read, search, create, update, move, delete, and convert Confluence pages and attachments from the terminal.
|
|
4
|
+
argument-hint: <pageId, URL, search query, or task description>
|
|
5
|
+
allowed-tools: [Bash, Read, Write, Glob, Grep]
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# confluence-cli Skill
|