Skip to content

Task Exchange

URL: task.irregulars.io | Source: apps/task-exchange/

The Task Exchange is the community’s marketplace for tasks and projects. Think Upwork, but reputation replaces money. Members post tasks, bid on work, and build reputation through successful contributions — creating a currency of trust and demonstrated capability within the community.

IrregularChat members have diverse skills — from cybersecurity and OSINT to software engineering and hardware fabrication. The Task Exchange matches people who need work done with people who can do it, using reputation instead of payment. This encourages knowledge sharing and makes the community’s collective skills discoverable and actionable.

  • Task Board — Browse and filter by skill, status, difficulty, project, or assignee
  • Difficulty Levels — Micro → Easy → Medium → Hard → Expert
  • Status Workflow — Open → Assigned → In Progress → Submitted → Completed/Declined
  • Subtasks and Checklists — Break tasks into steps with automatic synchronization
  • Child Tasks — Parent-child task hierarchies for complex work
  • Skill Tags — Tag tasks with required skills (python, javascript, devops, security, etc.)
  • Proposals — Submit bids with pitch, time estimate, and approach (one bid per person per task)
  • Bid Acceptance — Winner locked in, competing bids auto-rejected, task assigned
  • Reputation Tiers — Earn through completed work:
    • Newcomer → Contributor → Trusted → Expert → Legend
  • Profile Visibility — Control whether your reputation profile is visible to task creators
  • Competitive Tasks — Multiple workers compete on the same task simultaneously
  • Scoring — Winner gets 150% points, met_requirements gets 100%, attempted gets 20%
  • AI Enhance — GPT-powered description improvement with difficulty, category, and tag suggestions
  • Task Split Detection — AI detects when a task contains multiple unrelated items and suggests splitting
  • Suggestion Chips — Follow-up prompts for refining task descriptions
  • Checklist Extraction — AI parses markdown checklists (- [ ]) into structured subtasks
  • Projects — Multi-board organizational units (e.g., “Security Initiative”)
  • Kanban Boards — Visual boards with lists and drag-and-drop task management
  • Sprints — Time-boxed iterations with participant tracking and join/leave
  • Submission Workflow — Submit work with content/links for review and approval
  • File Attachments — Upload evidence and deliverables via R2 storage
  • GitLab Webhook — Auto-submission triggered from GitLab pushes
CommandDescription
!taskList recent tasks
!task #123View task details
!task @person instructionsCreate task assigned to someone
!tasksBrowse all open tasks
!claim #123Claim an open task
!submit contentSubmit work for review
!bid #123 pitchPlace a bid on a task
!sprintsList active sprints
!join #sprint-idJoin a sprint

The bot resolves Signal UUIDs to user accounts via contributor_profile.signal_number.

Signal Bot → Task Exchange API (/api/bot/)
Event Service → Task Exchange (event-generated logistics tasks)
Field Notes → Task Exchange (follow-up tasks from articles)
QA Form → Task Exchange (unanswered questions → tasks)
Task Exchange → GitLab (webhook auto-submissions)
Task Exchange → Authentik SSO (login, identity)
  • Signal Bot — Full command suite: create, claim, bid, submit, browse tasks and sprints
  • Event Service — Events can generate logistics tasks (setup, teardown, travel coordination)
  • Field Notes — Articles can spawn related community tasks for follow-up research
  • QA Form — Unanswered questions can be escalated to tasks
  • GitLab — Webhook integration for auto-submission from code pushes

Major development (2025-2026):

  • Linear-inspired UI redesign: sidebar layout, Cmd+K command palette, Inter+JetBrains Mono fonts
  • Bidding system with Upwork-style proposals and reputation tracking
  • AI Enhance with agentic mode, suggestion chips, task split detection
  • Challenge mode for competitive task completion
  • R2 file upload/download for task attachments
  • Career profiles with skills and reputation display
  • Multiple security audit rounds (session fixation, XSS, FTS5 injection, SSRF, prompt injection)
  • Fabrication command integration with Signal bot (3D model pipeline)

23 tables including:

  • user_account, contributor_profile — Members with reputation scores, skills, Signal linking
  • task, subtask, task_bid, task_skill — Core task and bidding system
  • submission, challenge_submission — Work submission and review
  • project, board, list — Project management hierarchy
  • sprint, sprint_participant — Time-boxed work iterations
  • skill_tag, skill_tag_admin — Managed skill catalog

Many tables use composite primary keys: project_member, sprint_participant, task_skill_tag.

ComponentTechnology
RuntimeCloudflare Workers
FrameworkHono
DatabaseD1 (23 tables)
SessionsKV (SESSIONS)
StorageR2 (file attachments)
Real-timeDurable Objects + Queues
AIOpenAI API (GPT for task enhancement)
ObservabilityEnabled (Cloudflare analytics)
AuthAuthentik OIDC via @irregularchat/shared-utils