Dev & Engineering slack-bottask-queuesqlitegit-automationworkspace-isolationgithub-prs

Sleepless Agent

A continuous Claude Code task daemon for using idle Pro capacity on development work.

FollowAgents review · FARS-2.1
Not recommended
46/ 100 5-point scale 2.3 / 5
1 2 3 4 5 6
Per-dimension scores and reasoning
1Trust8 / 29 · 1.4/5

Evidence shows: README describes hybrid autonomy (random thoughts auto-applied, serious tasks require review), but no implementation details for user confirmation; data flow described from Slack to queue to executor, but transparency not explicit; sensitive data handling only mentions env vars for tokens, no encryption or minimization; dependencies listed without version pinning or security audit; external effects include auto Git commits and PR creation, but no user confirmation or rollback mechanism; rollback only via trash soft delete, not full rollback; source attribution via citation and license, not verified. Deductions: lack of concrete implementation evidence for least privilege, user confirmation, data flow transparency, sensitive data handling, dependency security, external effects, rollback, and source attribution.

2Reliability6 / 14 · 2.1/5

Evidence shows: version inconsistency between README (0.1.0) and pyproject (0.1.2), but overall description consistent; dependencies listed but no version pinning or mirror; failure messages not detailed in docs. Deductions: version inconsistency, dependency availability unverified, failure message documentation insufficient.

3Adaptability12 / 18 · 3.3/5

Evidence shows: README details multiple use cases (daily brainstorm, production fix, code audit) and provides both Slack and CLI interfaces; capability boundaries via task types and workspace constraints; trigger precision via commands and parameters; environment fit includes Windows/WSL PATH issues and systemd/launchd deployment. Deductions: capability boundaries and trigger precision based on docs, not code verification.

4Convention10 / 18 · 2.8/5

Evidence shows: README well-structured with install, config, usage, architecture, deployment sections; install notes detailed including pip and dev; naming stable (sle command); examples and FAQ links provided; known limitations not explicitly listed; license MIT; version in pyproject but inconsistent with README; maintenance responsibility not clear. Deductions: missing known limitations, version inconsistency, unclear maintenance responsibility.

5Effectiveness7 / 13 · 2.7/5

Evidence shows: output usability via CLI and Slack commands including status checks and reports; marginal value in utilizing unused Claude quota at night; cost-benefit not backed by data, only claims of maximized usage. Deductions: cost-benefit lacks data support.

6Verifiability3 / 8 · 1.9/5

Evidence shows: claims in README (features, architecture) lack code references or test evidence; cross-source verification only via doc links, no independent verification; facts and inferences not clearly separated. Deductions: claims lack traceability, cross-verification insufficient, facts and inferences conflated.

Evidence confidence: Low Reviewed Aug 09, 2026 Reviewed revision dbeb1c28699b
Safety controls not found in source: dependency security
Before you use it
  • Version inconsistency: README mentions 0.1.0, pyproject 0.1.2, may cause confusion.
  • Dependencies not pinned, supply chain risk.
  • Auto Git commits and PR creation may have unintended external effects, configure carefully.
  • Sensitive info like Slack tokens stored via env vars, no encryption mentioned.
Review evidence [1][2][3][4]
See the full review method →

What does this agent do, and when should you use it?

Sleepless Agent is a 24/7 development-task daemon powered by the Claude Code CLI and Python Agent SDK. It accepts work through Slack commands or the local `sle` CLI and persists tasks in a SQLite queue. The daemon executes work in isolated workspaces, stores results and metadata, and can make Git commits and pull requests according to task type. Its scheduler checks Claude Code Pro usage with `claude /usage` and pauses or resumes new task generation using separate day and night thresholds. Slack is optional, and the repository documents deployment through Linux systemd and macOS launchd.

A user submits a thought or project task with /think or sle think; the Slack bot or CLI places it in the SQLite Task Queue. The event loop in daemon.py schedules work, while claude_code_executor.py uses the Python Agent SDK to run the Claude Code CLI in an isolated task workspace; complex work can use configurable Planner, Worker, and Evaluator agents with independent turn limits. results.py stores outputs and metadata, monitor.py exposes health checks and metrics, and claude /usage informs whether generation and scheduling continue. Random thoughts can be committed to thought-ideas; project tasks submitted with -p can create feature/<project>-<task_id> branches and, when gh is installed and configured, pull requests.

  1. A solo developer with Claude Code Pro wants overnight handling of captured engineering ideas while retaining task outputs.
  2. A Slack-based engineering team wants to submit a backend task with /think -p backend ... and review its work through a feature branch and PR.
  3. A command-line-first developer does not want Slack administration and wants to manage tasks locally with sle think, sle check, and sle report.
  4. A user has independent development jobs to run concurrently and needs each job to receive its own workspace.
  5. A developer wants to conserve daytime Claude Code Pro capacity while allowing more aggressive overnight task execution through configured thresholds.

What are this agent's strengths and limitations?

Pros
  • Slack commands mirror the sle CLI, and the CLI works without a Slack configuration.
  • The SQLite queue, result storage, reports, logs, and metrics are kept in a local workspace for persistent operation and traceability.
  • Per-task isolated workspaces are paired with feature branches, automatic commits, and optional PR creation for project tasks.
  • Configurable day and night thresholds make Claude Code Pro usage management part of task scheduling.
Limitations
  • Core execution depends on the Claude Code CLI, its authenticated session, and Claude Code Pro usage; no other model or API adapter is documented.
  • Slack use requires workspace-admin setup of Socket Mode, OAuth scopes, event subscriptions, and two tokens.
  • Automatic PR creation depends on the optional gh CLI, and remote Git repository settings must be supplied by the user.
  • Tasks write to local workspaces and perform Git operations, so teams should assess isolation and review practices before enabling auto-commits or task auto-generation.

How do you install or deploy this agent?

Requires Python 3.11+, Node.js, Git, and an authenticated Claude Code CLI. Install the package with pip install sleepless-agent; install the CLI with npm install -g @anthropic-ai/claude-code; then run claude login and verify with claude --version. For a first run, start sle daemon and submit sle think "Research async Python patterns"; Slack is not required. To enable Slack, create a Socket Mode app, put SLACK_BOT_TOKEN and SLACK_APP_TOKEN in .env, then run sle daemon.

How do you use this agent?

Start sle daemon, then create a project task with sle think "Build onboarding flow" -p backend, or submit a random thought with sle think "Explore async patterns". Use sle check for daemon, queue, and usage status; sle usage for Claude Code Pro usage; and sle report 7 for task details. sle cancel 9 moves a task or project to trash, and sle trash restore <project> restores it. To override storage paths, run sle --db-path ./tmp/tasks.db --results-path ./tmp/results check. With Slack configured, use the matching /think, /check, /usage, /report, /cancel, and /trash commands; /chat <project> starts an interactive session in a dedicated thread.

FAQ

Is Slack required?
No. The documented sle CLI runs without Slack; Slack is an optional real-time interface for task submission and status checks.
Does it require a Claude API key?
No. It uses the Claude Code CLI. The documented setup installs that CLI, runs claude login, and states that a Claude API key is no longer needed.
What happens at the usage threshold?
New task generation pauses, running tasks finish normally, pending work remains queued, and operation resumes automatically when usage resets.
Does it merge pull requests automatically?
The documentation describes creating feature branches, automatic commits, and PRs for review. It does not document automatic PR merging.

Compare agents like this one

The same FARS review applied across the shortlist this agent qualifies for.

Related agents