postiz 2.0.5 → 2.0.6
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/CHANGELOG.md +29 -0
- package/LICENSE +13 -657
- package/README.md +54 -23
- package/SKILL.md +28 -6
- package/dist/index.js +234 -12480
- package/dist/index.js.map +1 -1
- package/package.json +29 -8
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the Postiz CLI will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.0.0] - 2026-02-13
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Initial release of Postiz CLI
|
|
12
|
+
- `posts:create` - Create new social media posts
|
|
13
|
+
- `posts:list` - List all posts with pagination and search
|
|
14
|
+
- `posts:delete` - Delete posts by ID
|
|
15
|
+
- `integrations:list` - List connected social media integrations
|
|
16
|
+
- `upload` - Upload media files (images)
|
|
17
|
+
- Environment variable configuration (POSTIZ_API_KEY, POSTIZ_API_URL)
|
|
18
|
+
- Comprehensive help documentation
|
|
19
|
+
- Example scripts for basic usage and AI agent integration
|
|
20
|
+
- SKILL.md for AI agent usage patterns
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
- Command-line interface for Postiz API
|
|
24
|
+
- Support for scheduled posts
|
|
25
|
+
- Multi-platform posting via integrations
|
|
26
|
+
- Media upload functionality
|
|
27
|
+
- User-friendly error messages with emojis
|
|
28
|
+
- JSON output for programmatic parsing
|
|
29
|
+
- Comprehensive examples for AI agents
|