- Remove turn management tools (turn-status/advance/reset) — internal only, accessible via /dirigent slash commands - Rename discord tools: dirigent_discord_channel_create, dirigent_discord_channel_update, dirigent_discord_member_list - Rewrite install script: - Dynamic OpenClaw dir resolution (OPENCLAW_DIR env → openclaw CLI → ~/.openclaw) - Plugin installed to $(openclaw_dir)/plugins/dirigent - New --update mode: git pull from latest branch + reinstall - Cleaner uninstall: removes installed plugin files - Update docs (FEAT.md, README.md, CHANGELOG.md, TASKLIST.md)
41 lines
1022 B
JSON
41 lines
1022 B
JSON
{
|
|
"name": "@hangman-lab/dirigent",
|
|
"version": "0.3.0",
|
|
"description": "Dirigent - Rule-based no-reply gate with provider/model override and turn management for OpenClaw",
|
|
"type": "module",
|
|
"files": [
|
|
"dist/",
|
|
"plugin/",
|
|
"no-reply-api/",
|
|
"discord-control-api/",
|
|
"docs/",
|
|
"scripts/install-dirigent-openclaw.mjs",
|
|
"docker-compose.yml",
|
|
"Makefile",
|
|
"README.md",
|
|
"CHANGELOG.md",
|
|
"TASKLIST.md"
|
|
],
|
|
"scripts": {
|
|
"prepare": "mkdir -p dist/dirigent && cp plugin/* dist/dirigent/",
|
|
"postinstall": "node scripts/install-dirigent-openclaw.mjs --install",
|
|
"uninstall": "node scripts/install-dirigent-openclaw.mjs --uninstall",
|
|
"update": "node scripts/install-dirigent-openclaw.mjs --update"
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"plugin",
|
|
"discord",
|
|
"moderation",
|
|
"turn-management"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.hangman-lab.top/nav/Dirigent.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|