Some checks failed
Release / semantic-release (push) Successful in 59s
tests / Unit tests (Linux, Python 3.11) (push) Successful in 13m45s
Release / build-linux (push) Failing after 7m47s
Release / build-windows (push) Has been cancelled
Release / build-macos (arm64, macos-latest) (push) Has been cancelled
Release / build-macos (x64, macos-15-intel) (push) Has been cancelled
Release / release-main (push) Has been cancelled
Release / release-develop (push) Has been cancelled
Transform isair/jarvis into a Discord-controlled voice assistant running on the Ubuntu VNC desktop, keeping the mature ~39k-line Python brain intact. - bot/ (Node + bun, discord.js): /자비스 slash commands (ephemeral), voice channel join + voice receive/playback, pluggable VNC screen broadcast (selfbot live / noVNC / screenshot) - bridge/ (Python, Flask): wraps jarvis STT + run_reply_engine + Piper TTS behind a thin localhost HTTP API - .env.example, scripts/ (start_bridge/start_bot/dev), README rewrite, docs/language-comparison.md and docs/vnc-xfce-setup.md Language decision: hybrid (Python brain + Node/bun Discord layer) because Discord blocks bot video; native screen broadcast only works via a Node selfbot library.
58 lines
1.9 KiB
JSON
58 lines
1.9 KiB
JSON
{
|
|
"branches": [
|
|
"main"
|
|
],
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "conventionalcommits",
|
|
"releaseRules": [
|
|
{ "type": "feat", "release": "minor" },
|
|
{ "type": "fix", "release": "patch" },
|
|
{ "type": "perf", "release": "patch" },
|
|
{ "type": "revert", "release": "patch" },
|
|
{ "type": "docs", "release": false },
|
|
{ "type": "style", "release": false },
|
|
{ "type": "chore", "release": false },
|
|
{ "type": "refactor", "release": "patch" },
|
|
{ "type": "test", "release": false },
|
|
{ "type": "build", "release": false },
|
|
{ "type": "ci", "release": false },
|
|
{ "breaking": true, "release": "major" }
|
|
]
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/release-notes-generator",
|
|
{
|
|
"preset": "conventionalcommits",
|
|
"presetConfig": {
|
|
"types": [
|
|
{ "type": "feat", "section": "✨ Features" },
|
|
{ "type": "fix", "section": "🐛 Bug Fixes" },
|
|
{ "type": "perf", "section": "⚡ Performance Improvements" },
|
|
{ "type": "revert", "section": "🔄 Reverts" },
|
|
{ "type": "docs", "section": "📝 Documentation", "hidden": false },
|
|
{ "type": "style", "section": "💄 Styles", "hidden": true },
|
|
{ "type": "chore", "section": "🔧 Miscellaneous Chores", "hidden": true },
|
|
{ "type": "refactor", "section": "♻️ Code Refactoring" },
|
|
{ "type": "test", "section": "✅ Tests", "hidden": true },
|
|
{ "type": "build", "section": "👷 Build System", "hidden": true },
|
|
{ "type": "ci", "section": "🔁 Continuous Integration", "hidden": true }
|
|
]
|
|
}
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/github",
|
|
{
|
|
"successComment": false,
|
|
"failTitle": false,
|
|
"failComment": false,
|
|
"releasedLabels": false
|
|
}
|
|
]
|
|
]
|
|
}
|