freshcrate
Skin:/
Home > AI Agents > 20x

20x

Self-improving Agent orchestrator for all knowledge work

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

Self-improving Agent orchestrator for all knowledge work

README

20x Logo

20x

License: MIT Version Platform Discord

One app. All your tasks. Powered by AI agents.

20x is a desktop app that turns your task list into an AI-powered workforce. Connect your tools — Linear, HubSpot, YouTrack, GitLab, Notion, Peakflo — assign tasks to AI agents, and watch them work in real time.

No cloud. No subscriptions. Everything runs on your machine.

20x product demo

Why 20x?

Most AI tools make you copy-paste context between tabs. 20x flips it: your tasks come to the agents, not the other way around.

  • Pull a task from Linear → AI agent picks it up, reads the context, writes the code, opens a PR
  • Got a backlog of tickets? → Queue them up, agents work through them while you review
  • Need human approval? → Agents pause and ask before doing anything risky

How It Works

20x process: Hubspot, YouTrack, Linear, Github issues, Peakflo Workflo → triage agent → Agent (Claude Code, Opencode, OpenAI Codex) → HITL review → Feedback

  1. Tasks flow in — from Linear, YouTrack, HubSpot, GitHub Issues, Notion, Peakflo Workflo, or created manually
  2. Triage agent — Assigns priority, coding agent (Claude Code, OpenCode, or Codex), relevant skills, and git repos
  3. Agent works the task — reads skills, git worktrees, and MCP servers; streams output in real time
  4. HITL review — Agents pause for human approval before risky actions
  5. Feedback loop — Skills and confidence levels are automatically updated after completion

Features

20x integrations: Hubspot, YouTrack, Linear, Github issues, Peakflo Workflo → 20x ↔ GitLab, Github, MCP → Claude Code, Opencode, OpenAI Codex; Skills automatically improved

📊 Dashboard Workspace

  • Overview dashboard — See task completion stats, AI autonomy metrics, and agent success rates at a glance
  • Kanban task board — Tasks grouped by status with drag-and-drop support
  • Workflow applications — Launch and manage workflow apps directly from the dashboard
  • Presetup wizard — Guided templates to get started quickly with new applications

🤖 Multi-Agent Support

  • Claude Code — Anthropic's official agent SDK (Claude Sonnet 4.6)
  • OpenCode — Open-source coding agent
  • Codex — OpenAI's agent framework (GPT-5.4)
  • Live transcripts — Watch agents think and work in real time with message counts
  • Human-in-the-loop — Approve risky actions before execution
  • Task progress tracking — Real-time progress events during agent execution

🔗 Smart Integrations

  • Linear — Pull issues, update status, post comments
  • HubSpot — Sync tickets and workflows
  • YouTrack — Connect JetBrains YouTrack projects and tasks
  • GitLab — Full GitLab integration for task sourcing and repositories
  • Notion — Sync Notion databases with full property and attachment support
  • Peakflo — Connect your Peakflo Workflo tasks
  • GitHub Issues — Pull issues directly from GitHub repositories
  • OAuth built-in — Secure authentication flows

🧠 Skills System

  • Reusable instructions — Create skill templates for common patterns
  • Auto-learning — Agents update skills based on feedback
  • Confidence tracking — Skills improve over time
  • 2-way sync — Skills synchronize bidirectionally between 20x and Workflo
  • Searchable skills — Quickly find skills with built-in search

🛠 Developer-First

  • Git worktree management — Isolated branches per task
  • Repository context — Agents know which repos to work on (GitHub & GitLab)
  • MCP servers — Connect Model Context Protocol tools with auto-registration
  • Local-first — SQLite database, no cloud required

📋 Task Management

  • Subtasks — Break tasks into subtasks with ordering and drag-and-drop reordering
  • Recurring tasks — Daily, weekly, monthly schedules
  • Task snoozing — Snooze tasks and have them resurface at the right time
  • Rich metadata — Types, priorities, due dates, labels
  • File attachments — Add context files to tasks
  • Output fields — Structured task results
  • Smart search — Find anything fast

💓 Heartbeat Monitoring

  • Enterprise heartbeat — Continuous health checks with GitHub preflight
  • CI failure detection — Automatically detect CI pipeline failures
  • State syncing — Keep task state in sync across sessions

Getting Started

Supported Platforms

  • macOS — Full support
  • Windows — Full support
  • Linux — AppImage installer

Prerequisites

  • Node.js >= 22
  • pnpm >= 9
  • Git (for worktree features)
  • GitHub CLI (optional, for GitHub repo features)
  • GitLab CLI (optional, for GitLab repo features)

Installation

# Clone the repository
git clone https://github.com/peakflo/20x.git
cd 20x

# Install dependencies
pnpm install

macOS: Signed & Notarized Releases

Release artifacts are signed with an Apple Developer ID certificate and notarized to avoid Gatekeeper install/open warnings.

For maintainers, setup details are in docs/macos-signing-notarization.md.

Configuration

API Keys: Configure in Agent Settings:

  • Anthropic API key for Claude Code
  • OpenAI API key for OpenCode (if needed)

Database:

  • Stored at ~/Library/Application Support/pf-desktop/pf-desktop.db (macOS)
  • Automatic backups before migrations

Integrations:

  1. Get OAuth credentials from Linear/HubSpot/Peakflo
  2. Configure in Integrations settings
  3. Complete OAuth flow in-app

Development

# Start dev server
pnpm run dev

# Run tests
pnpm test

# Build for distribution
pnpm run build:mac    # macOS
pnpm run build:win    # Windows
pnpm run build:linux  # Linux

Architecture

Data Flow

React UI → Zustand Store → IPC Client → Preload Bridge → Main Process → SQLite
  • Renderer — React 19 + Tailwind CSS 4 + Zustand 5
  • Main Process — Electron 34 + SQLite + Agent orchestration
  • Security — Full context isolation, no Node.js in renderer

Agent Architecture

Session Lifecycle:

  1. Start — Agent assigned, skills applied, session created
  2. Streaming — Real-time output sent to UI
  3. Approval — Agent pauses for human decisions
  4. Completion — Results saved, task updated

See AGENTS.md for detailed architecture.

Tech Stack

Layer Technology
Shell Electron 34
Build electron-vite
Frontend React 19 + Tailwind CSS 4 + Zustand 5
UI Components Radix UI primitives
Styling cva + Tailwind CSS tokens
Icons Lucide React
Font Geist
Database SQLite (better-sqlite3, WAL mode)
Agent SDKs @opencode-ai/sdk, @anthropic-ai/claude-agent-sdk, @zed-industries/codex-acp
Testing Vitest + happy-dom

Contributing

We welcome contributions! Here's how:

  1. Fork the repo
  2. Create a branch: git checkout -b feature/my-feature
  3. Write code: Follow TypeScript strict mode, ESLint, Prettier
  4. Add tests: Vitest tests for new features
  5. Commit: Use conventional commits (feat:, fix:, etc.)
  6. Push: git push origin feature/my-feature
  7. Open PR: Describe changes, ensure CI passes

Code Style

  • TypeScript strict mode
  • Minimal Tailwind classes (prefer CSS variables)
  • Use pnpm (not npm)
  • Check MEMORY.md for project patterns

Community

Security

Local-First

  • All data stored locally in SQLite
  • No cloud sync, no subscriptions
  • Optional database encryption

OAuth & API Keys

  • Tokens encrypted with Electron safeStorage
  • Keys never exposed to renderer process
  • Parameterized SQL queries only

Electron Security

  • contextIsolation: true
  • nodeIntegration: false
  • External links open in system browser

Roadmap

Planned

  • Additional integrations (Jira, Asana)
  • Team collaboration (shared task sources)
  • Cost tracking (token usage per session)
  • Agent templates (pre-configured profiles)
  • Plugin marketplace (community skills)
  • Light theme

Recently Shipped

  • ✅ Dashboard workspace with Kanban board and workflow apps
  • ✅ Subtask support with ordering and drag-and-drop
  • ✅ GitLab integration (task sourcing & repositories)
  • ✅ YouTrack integration
  • ✅ Notion integration with full property support
  • ✅ GitHub Issues integration
  • ✅ Windows and Linux platform support
  • ✅ Task snoozing
  • ✅ Skills 2-way sync with Workflo
  • ✅ Heartbeat monitoring with CI failure detection
  • ✅ Presetup wizard and dashboard templates
  • ✅ Claude Sonnet 4.6 and GPT-5.4 model support
  • ✅ Multi-agent support (OpenCode, Claude Code, Codex)
  • ✅ Skills system with auto-learning
  • ✅ Recurring tasks
  • ✅ Linear, HubSpot, Peakflo integrations
  • ✅ MCP server management
  • ✅ Git worktree management

License

MIT Š 2026 Peakflo


Built with Electron, React, and Anthropic Claude.

Release History

VersionChangesUrgencyDate
v0.0.85## What's Changed * fix: resolve unreferenced function warning in windows installer by @dimavedenyapin in https://github.com/peakflo/20x/pull/321 * feat: show current app version in general settings updates section by @dimavedenyapin in https://github.com/peakflo/20x/pull/322 * update opencode+acp, remove acp-codex by @dimavedenyapin in https://github.com/peakflo/20x/pull/323 * fix: throttle OpenCode config pushes to prevent Aborted errors in parallel tasks by @dimavedenyapin in https://github.cHigh5/31/2026
v0.0.81## What's Changed * fix: prevent Electron main process OOM crash from unbounded memory growth by @dimavedenyapin in https://github.com/peakflo/20x/pull/289 * feat: add auto-start agent and auto-complete options for recurring tasks by @dimavedenyapin in https://github.com/peakflo/20x/pull/300 * fix: include integration name in MCP auth proxy fail logs by @dimavedenyapin in https://github.com/peakflo/20x/pull/302 * fix: chunk sync events into batches of 100 to respect server limit by @dimavedenyapHigh5/25/2026
v0.0.80## What's Changed * fix: auto-recover from broken opencode server with corrupted SQLite database by @dimavedenyapin in https://github.com/peakflo/20x/pull/297 * fix: prevent premature IDLE transition for opencode sessions with tool calls by @dimavedenyapin in https://github.com/peakflo/20x/pull/207 * fix: filter stale LiteLLM models client-side after OpenCode provider query by @dimavedenyapin in https://github.com/peakflo/20x/pull/299 **Full Changelog**: https://github.com/peakflo/20x/compare/High5/15/2026
v0.0.79## What's Changed * ci: eliminate 10min artifact download in release pipeline by @dimavedenyapin in https://github.com/peakflo/20x/pull/296 * fix: pass writable directory to config.providers() to prevent SQLite disk I/O error by @dimavedenyapin in https://github.com/peakflo/20x/pull/295 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.78...v0.0.79High5/12/2026
v0.0.73## What's Changed * fix: expose refreshAiGatewayVirtualKey for stale key recovery by @dimavedenyapin in https://github.com/peakflo/20x/pull/270 * Support key delete and create new by @dimavedenyapin in https://github.com/peakflo/20x/pull/271 * fix: stop skill selector dialog render loop by @dimavedenyapin in https://github.com/peakflo/20x/pull/274 * feat: dynamic color coding for task panels on canvas by @dimavedenyapin in https://github.com/peakflo/20x/pull/272 * fix: surface AI gateway warningHigh5/7/2026
v0.0.72## What's Changed * feat: auto-clean workspaces after 7 days post-task completion by @dimavedenyapin in https://github.com/peakflo/20x/pull/262 * fix: prevent macOS about:blank popup by @dimavedenyapin in https://github.com/peakflo/20x/pull/269 * fix: MCP auth proxy for transparent JWT refresh in long sessions by @dimavedenyapin in https://github.com/peakflo/20x/pull/268 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.71...v0.0.72High4/26/2026
v0.0.70## What's Changed * fix: add debug logging for AI gateway model fetching by @dimavedenyapin in https://github.com/peakflo/20x/pull/265 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.69...v0.0.70High4/23/2026
v0.0.68## What's Changed * fix: close dashboard preview modal when opening canvas by @dimavedenyapin in https://github.com/peakflo/20x/pull/259 * fix: strip Electron from user-agent to prevent Xero WAF blocking by @dimavedenyapin in https://github.com/peakflo/20x/pull/260 * fix: add timeout to opencode connection testing by @dimavedenyapin in https://github.com/peakflo/20x/pull/261 * [TSK-16090] windows improvement by @fan0916 in https://github.com/peakflo/20x/pull/263 ## New Contributors * @fan0916 mHigh4/21/2026
v0.0.67## What's Changed * feat: canvas panel interactions and integrations by @dimavedenyapin in https://github.com/peakflo/20x/pull/258 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.66...v0.0.67High4/19/2026
v0.0.66## What's Changed * feat: add Check for Updates button in updates modal by @dimavedenyapin in https://github.com/peakflo/20x/pull/255 * 20x: allow attaching files to messages in agent transcript by @dimavedenyapin in https://github.com/peakflo/20x/pull/253 * feat: Add Connect button signup trigger + localhost auth callback by @dimavedenyapin in https://github.com/peakflo/20x/pull/248 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.65...v0.0.66High4/19/2026
v0.0.65## What's Changed * fix(ci): unblock Windows installer by pinning Python 3.11 by @dimavedenyapin in https://github.com/peakflo/20x/pull/256 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.64...v0.0.65High4/19/2026
v0.0.63## What's Changed * fix: clear stale Codex credentials before API key auth to prevent 401 by @dimavedenyapin in https://github.com/peakflo/20x/pull/239 * fix: friendly error message for network errors + Retry button by @dimavedenyapin in https://github.com/peakflo/20x/pull/245 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.62...v0.0.63High4/17/2026
v0.0.62**Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.61...v0.0.62High4/17/2026
v0.0.61## What's Changed * fix: render HTML release notes and prevent install-restart loop by @dimavedenyapin in https://github.com/peakflo/20x/pull/244 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.60...v0.0.61High4/17/2026
v0.0.60## What's Changed * fix: add explicit publish config for electron-updater by @dimavedenyapin in https://github.com/peakflo/20x/pull/243 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.59...v0.0.60High4/17/2026
v0.0.59## What's Changed * ci: upload auto-update manifests in release workflow by @dimavedenyapin in https://github.com/peakflo/20x/pull/242 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.58...v0.0.59High4/17/2026
v0.0.58## What's Changed * feat: implement auto-update UX by @dimavedenyapin in https://github.com/peakflo/20x/pull/241 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.57...v0.0.58High4/17/2026
v0.0.57## What's Changed * fix: apply IDLE grace period to follow-up opencode messages by @dimavedenyapin in https://github.com/peakflo/20x/pull/224 * ci: scale down mac release runner by @dimavedenyapin in https://github.com/peakflo/20x/pull/237 * feat: implement auto-update UX with app menu, silent download, and quit-time prompt by @dimavedenyapin in https://github.com/peakflo/20x/pull/238 * feat(tasks): inline description editing + promote Start Task to main CTA by @dimavedenyapin in https://github.High4/17/2026
v0.0.56## What's Changed * feat: add Claude Opus 4.7 model by @dimavedenyapin in https://github.com/peakflo/20x/pull/235 * ci: disable builder notarization in mac release by @dimavedenyapin in https://github.com/peakflo/20x/pull/236 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.55...v0.0.56High4/17/2026
v0.0.44## What's Changed * feat: allow reusing existing integrations in presetup wizard by @dimavedenyapin in https://github.com/peakflo/20x/pull/195 * test: verify opencode adapter getStatus fallback by @dimavedenyapin in https://github.com/peakflo/20x/pull/189 * Reduce spammy ACP backend logs by @dimavedenyapin in https://github.com/peakflo/20x/pull/192 * fix: add dedicated 403 error handling in enterprise API client by @dimavedenyapin in https://github.com/peakflo/20x/pull/196 * fix: exclude recurriHigh4/14/2026
v0.0.43## What's Changed * fix: setup worktree for triaged tasks when starting session by @dimavedenyapin in https://github.com/peakflo/20x/pull/179 * fix capture of last invoices by @dimavedenyapin in https://github.com/peakflo/20x/pull/183 * Add structured enterprise auth logout reason logging by @dimavedenyapin in https://github.com/peakflo/20x/pull/184 * Replace per-skill sync with batch-sync API call on login by @dimavedenyapin in https://github.com/peakflo/20x/pull/185 * Fix missing worktrees wheHigh4/9/2026
v0.0.42## What's Changed * fix: mobile web session management + backend session tracking by @dimavedenyapin in https://github.com/peakflo/20x/pull/178 * fix: resolve Windows installer UAC elevation error by @kunalpurohit-peakflo in https://github.com/peakflo/20x/pull/181 * codex opencode fixes by @dimavedenyapin in https://github.com/peakflo/20x/pull/182 * fix: propagate waiting_approval status to enable opencode questions by @dimavedenyapin in https://github.com/peakflo/20x/pull/180 **Full ChangelogHigh4/8/2026
v0.0.41## What's Changed * feat: add YouTrack task source UI — connection setup, auth config & filters by @dimavedenyapin in https://github.com/peakflo/20x/pull/151 * fix: crash when completing subtask — undefined task type/priority by @dimavedenyapin in https://github.com/peakflo/20x/pull/154 * feat: add GitLab support — onboarding + repo sourcing by @dimavedenyapin in https://github.com/peakflo/20x/pull/148 * Fix YouTrack 'Complete task' button throwing Unknown action error by @dimavedenyapin in httpMedium4/6/2026
v0.0.40## What's Changed * fix: guard against non-array labels in search filter by @dimavedenyapin in https://github.com/peakflo/20x/pull/140 * fix: guard against non-array skill_ids in TaskDetailView by @dimavedenyapin in https://github.com/peakflo/20x/pull/141 * fix: use local timezone instead of UTC for recurring tasks by @dimavedenyapin in https://github.com/peakflo/20x/pull/144 * fix: snooze wake-up timer for time-based re-evaluation by @dimavedenyapin in https://github.com/peakflo/20x/pull/143 * Medium3/28/2026
v0.0.39## What's Changed * feat: add full Windows support by @kunalpurohit-peakflo in https://github.com/peakflo/20x/pull/127 * fix: sidebar heartbeat icon not updating on enable/disable by @dimavedenyapin in https://github.com/peakflo/20x/pull/135 * refactor: consolidate onboarding into single wizard by @dimavedenyapin in https://github.com/peakflo/20x/pull/134 * fix: sidebar heartbeat icon not updating on enable/disable by @dimavedenyapin in https://github.com/peakflo/20x/pull/136 * fix: subtasks ordMedium3/25/2026
v0.0.37## What's Changed * feat: add search input for skills sidebar by @dimavedenyapin in https://github.com/peakflo/20x/pull/116 * feat: triage agent defines output_fields for tasks by @dimavedenyapin in https://github.com/peakflo/20x/pull/118 * fix: correct priority/status sort order and add subtask ordering by @dimavedenyapin in https://github.com/peakflo/20x/pull/120 * feat: add Claude Sonnet 4.6 to available models by @dimavedenyapin in https://github.com/peakflo/20x/pull/121 * feat: implement skMedium3/23/2026
v0.0.36## What's Changed * fix: check github pr conflicts in heartbeat preflight by @dimavedenyapin in https://github.com/peakflo/20x/pull/109 * feat(TSK-15823): sync state to Workflo in enterprise mode by @dimavedenyapin in https://github.com/peakflo/20x/pull/96 * fix: always notify workflo enterprise when completing tasks from 20x by @dimavedenyapin in https://github.com/peakflo/20x/pull/110 * fix: enterprise task completion - fail on missing API client + time-limit race guard by @dimavedenyapin in hLow3/13/2026
v0.0.35## What's Changed * fix: show heartbeat check summaries by @dimavedenyapin in https://github.com/peakflo/20x/pull/105 * fix: reset heartbeat baseline on instruction changes by @dimavedenyapin in https://github.com/peakflo/20x/pull/106 * Fix GitHub org dropdown for repo-scoped access by @dimavedenyapin in https://github.com/peakflo/20x/pull/108 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.34...v0.0.35Low3/12/2026
v0.0.34## What's Changed * fix: prevent Codex long streamed replies from splitting into multiple messages by @dimavedenyapin in https://github.com/peakflo/20x/pull/98 * feat(codex): add Codex 5.4 model support by @dimavedenyapin in https://github.com/peakflo/20x/pull/102 * feat: add per-agent codex permission mode by @dimavedenyapin in https://github.com/peakflo/20x/pull/103 * fix: prevent shutdown DB access race by @dimavedenyapin in https://github.com/peakflo/20x/pull/104 * fix: prevent duplicate staLow3/11/2026
v0.0.33## What's Changed * feat(TSK-15822): Enterprise plugin with Workflo sync by @dimavedenyapin in https://github.com/peakflo/20x/pull/85 * docs: enterprise sync implementation (TSK-15822) by @dimavedenyapin in https://github.com/peakflo/20x/pull/92 * feat: add get_skill, update_skill, delete_skill MCP tools by @dimavedenyapin in https://github.com/peakflo/20x/pull/93 * feat: collapse long task descriptions with expand/collapse toggle by @dimavedenyapin in https://github.com/peakflo/20x/pull/94 * fiLow3/10/2026
v0.0.32## What's Changed * fix: sync mobile task changes to desktop in real-time by @dimavedenyapin in https://github.com/peakflo/20x/pull/67 * fix: support Notion unique_id (ID) property in synced task descriptions by @dimavedenyapin in https://github.com/peakflo/20x/pull/68 * feat: add attachment support for Notion task source by @dimavedenyapin in https://github.com/peakflo/20x/pull/69 * fix: batch IPC messages to fix parallel agent hang in Electron by @dimavedenyapin in https://github.com/peakflo/2Low3/9/2026
v0.0.31## What's Changed * fix: improve markdown styling and UX in agent transcript by @dimavedenyapin in https://github.com/peakflo/20x/pull/63 * feat: add ExitPlanMode plan review UI by @dimavedenyapin in https://github.com/peakflo/20x/pull/60 * [TSK-15765] feat: implement OAuth flow for MCP servers by @dimavedenyapin in https://github.com/peakflo/20x/pull/58 * fix: codex tool details and message splitting by @dimavedenyapin in https://github.com/peakflo/20x/pull/64 * feat: add task create/edit from Low3/4/2026
v0.0.30## What's Changed * optimise worker thread by @dimavedenyapin in https://github.com/peakflo/20x/pull/59 * Hotfix/UI freeze by @dimavedenyapin in https://github.com/peakflo/20x/pull/61 * feat: add explicit auth method selector for Claude Code by @dimavedenyapin in https://github.com/peakflo/20x/pull/62 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.29...v0.0.30Low3/3/2026
v0.0.29## What's Changed * add support for gpt 5.3 codex by @dimavedenyapin in https://github.com/peakflo/20x/pull/56 * [TSK-15753] feat: mobile web interface for remote task management by @dimavedenyapin in https://github.com/peakflo/20x/pull/57 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.28...v0.0.29Low3/3/2026
v0.0.28## What's Changed * clean ups 28 feb by @dimavedenyapin in https://github.com/peakflo/20x/pull/54 * [TSK-15752] feat: implement secrets manager with broker + shell wrapper injection by @dimavedenyapin in https://github.com/peakflo/20x/pull/55 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.27...v0.0.28Low3/1/2026
v0.0.27## What's Changed * feat: support multiline text in agent transcript input by @dimavedenyapin in https://github.com/peakflo/20x/pull/53 * notion integration as a task source by @dimavedenyapin in https://github.com/peakflo/20x/pull/52 * db migrations improve by @dimavedenyapin in https://github.com/peakflo/20x/pull/51 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.26...v0.0.27Low2/28/2026
v0.0.26## What's Changed * db close fix by @dimavedenyapin in https://github.com/peakflo/20x/pull/50 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.25...v0.0.26Low2/26/2026
v0.0.25**Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.24...v0.0.25Low2/26/2026
v0.0.24## What's Changed * Hotfix/mino fixes25feb 2 by @dimavedenyapin in https://github.com/peakflo/20x/pull/45 * final fixes in readme file by @dimavedenyapin in https://github.com/peakflo/20x/pull/46 * Hotfix/readme feb25 by @dimavedenyapin in https://github.com/peakflo/20x/pull/47 * Hotfix/readme feb25 by @dimavedenyapin in https://github.com/peakflo/20x/pull/48 * temp remove linux and windows build by @dimavedenyapin in https://github.com/peakflo/20x/pull/49 **Full Changelog**: https://github.coLow2/25/2026
v0.0.23**Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.22...v0.0.23Low2/25/2026
v0.0.22## What's Changed * new onboarding by @dimavedenyapin in https://github.com/peakflo/20x/pull/44 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.21...v0.0.22Low2/25/2026
v0.0.21## What's Changed * add integrations diagram by @dimavedenyapin in https://github.com/peakflo/20x/pull/41 * auto run checks out git repo + skills are picked correctly by @dimavedenyapin in https://github.com/peakflo/20x/pull/42 * auto run checks out git repo + skills are picked correctly by @dimavedenyapin in https://github.com/peakflo/20x/pull/43 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.20...v0.0.21Low2/24/2026
v0.0.20## What's Changed * add triage agent by @dimavedenyapin in https://github.com/peakflo/20x/pull/40 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.19...v0.0.20Low2/22/2026
v0.0.19## What's Changed * gh auth fixes by @dimavedenyapin in https://github.com/peakflo/20x/pull/36 * feat: add 20x logo to top bar by @dimavedenyapin in https://github.com/peakflo/20x/pull/38 * app logo by @dimavedenyapin in https://github.com/peakflo/20x/pull/39 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.18...v0.0.19Low2/22/2026
v0.0.18## What's Changed * opencode fixes + questions support by @dimavedenyapin in https://github.com/peakflo/20x/pull/35 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.17...v0.0.18Low2/22/2026
v0.0.17## What's Changed * OSS prep by @dimavedenyapin in https://github.com/peakflo/20x/pull/29 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.16...v0.0.17Low2/21/2026
v0.0.16## What's Changed * add linux build by @dimavedenyapin in https://github.com/peakflo/20x/pull/28 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.15...v0.0.16Low2/20/2026
v0.0.15## What's Changed * add 1 command release by @dimavedenyapin in https://github.com/peakflo/20x/pull/27 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.14...v0.0.15Low2/20/2026
v0.0.13## What's Changed * minor fixes by @dimavedenyapin in https://github.com/peakflo/20x/pull/19 * Hotfix/readme by @dimavedenyapin in https://github.com/peakflo/20x/pull/20 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.12...v0.0.13Low2/18/2026
v0.0.11## What's Changed * Automatically open task view after creating new task by @dimavedenyapin in https://github.com/peakflo/20x/pull/16 * minor fixes by @dimavedenyapin in https://github.com/peakflo/20x/pull/18 * add recurring tasks by @dimavedenyapin in https://github.com/peakflo/20x/pull/17 **Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.10...v0.0.11Low2/17/2026
v0.0.12**Full Changelog**: https://github.com/peakflo/20x/compare/v0.0.11...v0.0.12Low2/17/2026
v0.0.10## What's Changed * Hotfix/claude code api key by @dimavedenyapin in https://github.com/peakflo/pf-desktop/pull/15 **Full Changelog**: https://github.com/peakflo/pf-desktop/compare/v0.0.9...v0.0.10Low2/17/2026
v0.0.9## What's Changed * Hotfix/claude code minor fixes by @dimavedenyapin in https://github.com/peakflo/pf-desktop/pull/14 **Full Changelog**: https://github.com/peakflo/pf-desktop/compare/v0.0.8...v0.0.9Low2/17/2026
v0.0.8## What's Changed * Feat/hubspot by @dimavedenyapin in https://github.com/peakflo/pf-desktop/pull/13 **Full Changelog**: https://github.com/peakflo/pf-desktop/compare/v0.0.7...v0.0.8Low2/17/2026
v0.0.7## What's Changed * add skills v3 by @dimavedenyapin in https://github.com/peakflo/pf-desktop/pull/12 **Full Changelog**: https://github.com/peakflo/pf-desktop/compare/v0.0.6...v0.0.7Low2/15/2026
v0.0.6## What's Changed * add linear task source by @dimavedenyapin in https://github.com/peakflo/pf-desktop/pull/9 **Full Changelog**: https://github.com/peakflo/pf-desktop/compare/v0.0.5...v0.0.6Low2/15/2026
v0.0.4**Full Changelog**: https://github.com/peakflo/pf-desktop/compare/v0.0.3...v0.0.4 **Full Changelog**: https://github.com/peakflo/pf-desktop/compare/v0.0.3...v0.0.4Low2/14/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

be-my-butlerOrchestrate multiple agents to execute Claude Code workflows with cross-model verification for reliable AI code automation.main@2026-06-05
adk-jsAn open-source, code-first Typescript toolkit for building, evaluating, and deploying sophisticated AI agents with flexibility and control.devtools-v1.2.0
cherry-studioAI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMsv1.9.9
ai-task-managerTask management for AI coding assistantsv3.2.0
nanoclawA lightweight alternative to OpenClaw that runs in containers for security. Connects to WhatsApp, Telegram, Slack, Discord, Gmail and other messaging apps,, has memory, scheduled jobs, and runs directv2.0.64

More in AI Agents

hermes-agentThe agent that grows with you
awesome-copilotCommunity-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.
CopilotKitThe Frontend Stack for Agents & Generative UI. React + Angular. Makers of the AG-UI Protocol
e2bE2B SDK that give agents cloud environments