confluence-cli 1.28.0 → 1.29.1
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 +14 -11
- package/package.json +4 -3
- 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,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "confluence-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.29.1",
|
|
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.1",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"axios": "^1.
|
|
12
|
+
"axios": "^1.15.0",
|
|
13
13
|
"chalk": "^4.1.2",
|
|
14
14
|
"commander": "^11.1.0",
|
|
15
15
|
"form-data": "^4.0.5",
|
|
@@ -1503,14 +1503,14 @@
|
|
|
1503
1503
|
"license": "MIT"
|
|
1504
1504
|
},
|
|
1505
1505
|
"node_modules/axios": {
|
|
1506
|
-
"version": "1.
|
|
1507
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
1508
|
-
"integrity": "sha512-
|
|
1506
|
+
"version": "1.15.0",
|
|
1507
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.15.0.tgz",
|
|
1508
|
+
"integrity": "sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==",
|
|
1509
1509
|
"license": "MIT",
|
|
1510
1510
|
"dependencies": {
|
|
1511
1511
|
"follow-redirects": "^1.15.11",
|
|
1512
1512
|
"form-data": "^4.0.5",
|
|
1513
|
-
"proxy-from-env": "^
|
|
1513
|
+
"proxy-from-env": "^2.1.0"
|
|
1514
1514
|
}
|
|
1515
1515
|
},
|
|
1516
1516
|
"node_modules/axios-mock-adapter": {
|
|
@@ -4691,10 +4691,13 @@
|
|
|
4691
4691
|
}
|
|
4692
4692
|
},
|
|
4693
4693
|
"node_modules/proxy-from-env": {
|
|
4694
|
-
"version": "
|
|
4695
|
-
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-
|
|
4696
|
-
"integrity": "sha512-
|
|
4697
|
-
"license": "MIT"
|
|
4694
|
+
"version": "2.1.0",
|
|
4695
|
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
|
|
4696
|
+
"integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
|
|
4697
|
+
"license": "MIT",
|
|
4698
|
+
"engines": {
|
|
4699
|
+
"node": ">=10"
|
|
4700
|
+
}
|
|
4698
4701
|
},
|
|
4699
4702
|
"node_modules/punycode": {
|
|
4700
4703
|
"version": "2.3.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "confluence-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.29.1",
|
|
4
4
|
"description": "A command-line interface for Atlassian Confluence with page creation and editing capabilities",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"author": "pchuri",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"axios": "^1.
|
|
26
|
+
"axios": "^1.15.0",
|
|
27
27
|
"chalk": "^4.1.2",
|
|
28
28
|
"commander": "^11.1.0",
|
|
29
29
|
"form-data": "^4.0.5",
|
|
@@ -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
|