@andrzejchm/notion-cli 0.6.0 → 0.8.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/README.md +11 -0
- package/dist/cli.js +512 -168
- package/dist/cli.js.map +1 -1
- package/docs/FEATURE-PARITY.md +186 -0
- package/docs/README.agents.md +59 -0
- package/docs/skills/using-notion-cli/SKILL.md +63 -22
- package/docs/testing-setup.md +250 -0
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -95,7 +95,11 @@ notion ls
|
|
|
95
95
|
| `notion comments <id\|url>` | Read page comments |
|
|
96
96
|
| `notion comment <id\|url> -m <text>` | Add a comment to a page |
|
|
97
97
|
| `notion append <id\|url> -m <markdown>` | Append markdown blocks to a page |
|
|
98
|
+
| `notion edit-page <id\|url> --find <old> --replace <new>` | Search-and-replace text on a page |
|
|
99
|
+
| `notion edit-page <id\|url> -m <markdown>` | Replace entire page content |
|
|
98
100
|
| `notion create-page --parent <id\|url> --title <title>` | Create a new page, prints URL |
|
|
101
|
+
| `notion update <id\|url> --prop "Name=Value"` | Update properties on a page |
|
|
102
|
+
| `notion archive <id\|url>` | Archive (trash) a page |
|
|
99
103
|
| `notion completion bash\|zsh\|fish` | Install shell tab completion |
|
|
100
104
|
|
|
101
105
|
### `notion db query` flags
|
|
@@ -188,6 +192,7 @@ Write commands require additional capabilities — enable in your integration se
|
|
|
188
192
|
|---------|----------------------|
|
|
189
193
|
| `notion append` | Read content, Insert content |
|
|
190
194
|
| `notion create-page` | Read content, Insert content |
|
|
195
|
+
| `notion update` | Read content, Update content |
|
|
191
196
|
| `notion comment` | Read content, Insert content, Read comments, Insert comments |
|
|
192
197
|
|
|
193
198
|
---
|
|
@@ -208,6 +213,12 @@ Write commands require additional capabilities — enable in your integration se
|
|
|
208
213
|
|
|
209
214
|
---
|
|
210
215
|
|
|
216
|
+
## Roadmap & Feature Parity
|
|
217
|
+
|
|
218
|
+
See [docs/FEATURE-PARITY.md](docs/FEATURE-PARITY.md) for a detailed comparison of this CLI's capabilities against the official Notion MCP server, with prioritized gaps and planned additions.
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
211
222
|
## License
|
|
212
223
|
|
|
213
224
|
MIT © [Andrzej Chmielewski](https://github.com/andrzejchm)
|