Files
Nevo David 3c33edf1b5 feat: Gemini CLI extension manifest (v2.0.18)
Add a root gemini-extension.json so the repo installs as a Gemini CLI
extension and gets indexed by the extensions gallery (repo now carries
the `gemini-cli-extension` topic; the crawler reads the latest tag).

- exposes the existing `postiz` skill from skills/postiz
- declares the hosted Postiz MCP server (mcp-oauth-dynamic); Gemini CLI
  handles OAuth via automatic discovery + dynamic client registration
- bump CLI and plugin manifests to 2.0.18; README sections for Gemini
  CLI and Qwen Code (Qwen installs the Claude marketplace directly)

Validated with `gemini extensions validate`.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-11 12:17:20 +07:00

65 lines
1.4 KiB
JSON

{
"name": "postiz",
"version": "2.0.18",
"description": "Postiz CLI - Command line interface for the Postiz social media scheduling API",
"main": "dist/index.js",
"bin": {
"postiz": "./dist/index.js"
},
"scripts": {
"dev": "tsup --watch",
"sync-skill": "cp SKILL.md skills/postiz/SKILL.md",
"build": "tsup",
"start": "node ./dist/index.js",
"prepublishOnly": "pnpm run build",
"publish": "tsup && pnpm publish --access public --no-git-checks"
},
"files": [
"dist",
"README.md",
"SKILL.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"postiz",
"cli",
"social-media",
"scheduling",
"automation",
"ai-agent",
"command-line",
"twitter",
"linkedin",
"facebook",
"instagram",
"tiktok",
"youtube",
"reddit"
],
"author": "Nevo David",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/gitroomhq/postiz-agent.git"
},
"homepage": "https://github.com/gitroomhq/postiz-agent#readme",
"bugs": {
"url": "https://github.com/gitroomhq/postiz-agent/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@types/pg": "^8.20.0",
"node-fetch": "^3.3.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/yargs": "^17.0.32",
"tsup": "^8.5.1",
"typescript": "^5.3.3"
}
}