[package]
edition = "2024"
rust-version = "1.94"
name = "ralph-agent-loop"
version = "0.2.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust CLI for managing AI agent loops with a structured JSON task queue"
homepage = "https://github.com/fitchmultz/ralph"
documentation = "https://docs.rs/ralph-agent-loop"
readme = "README.md"
keywords = [
"ai",
"agent",
"cli",
"task-queue",
"workflow",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/fitchmultz/ralph"
resolver = "2"
[features]
default = ["notifications"]
notifications = ["notify-rust"]
[lib]
name = "ralph"
path = "src/lib.rs"
[[bin]]
name = "ralph"
path = "src/main.rs"
[[test]]
name = "config_show_format_test"
path = "tests/config_show_format_test.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "context_cmd_test"
path = "tests/context_cmd_test.rs"
[[test]]
name = "contracts_test"
path = "tests/contracts_test.rs"
[[test]]
name = "custom_fields_test"
path = "tests/custom_fields_test.rs"
[[test]]
name = "daemon_integration_test"
path = "tests/daemon_integration_test.rs"
[[test]]
name = "doctor_contract_test"
path = "tests/doctor_contract_test.rs"
[[test]]
name = "dotenv_warning_test"
path = "tests/dotenv_warning_test.rs"
[[test]]
name = "env_override_ignored_test"
path = "tests/env_override_ignored_test.rs"
[[test]]
name = "fsutil_test"
path = "tests/fsutil_test.rs"
[[test]]
name = "git_repo_ci_gate_compliance_message_test"
path = "tests/git_repo_ci_gate_compliance_message_test.rs"
[[test]]
name = "git_repo_ci_gate_custom_test"
path = "tests/git_repo_ci_gate_custom_test.rs"
[[test]]
name = "git_repo_ci_gate_revert_test"
path = "tests/git_repo_ci_gate_revert_test.rs"
[[test]]
name = "git_repo_dirty_state_test"
path = "tests/git_repo_dirty_state_test.rs"
[[test]]
name = "git_repo_init_validate_test"
path = "tests/git_repo_init_validate_test.rs"
[[test]]
name = "git_repo_upstream_test"
path = "tests/git_repo_upstream_test.rs"
[[test]]
name = "git_safety_test"
path = "tests/git_safety_test.rs"
[[test]]
name = "gitutil_test"
path = "tests/gitutil_test.rs"
[[test]]
name = "help_output_contract_test"
path = "tests/help_output_contract_test.rs"
[[test]]
name = "init_validation_test"
path = "tests/init_validation_test.rs"
[[test]]
name = "lock_contention_integration_test"
path = "tests/lock_contention_integration_test.rs"
[[test]]
name = "lock_race_cleanup_test"
path = "tests/lock_race_cleanup_test.rs"
[[test]]
name = "lock_support"
path = "tests/lock_support.rs"
[[test]]
name = "lock_test"
path = "tests/lock_test.rs"
[[test]]
name = "makefile_ci_contract_test"
path = "tests/makefile_ci_contract_test.rs"
[[test]]
name = "migration_cli_integration_test"
path = "tests/migration_cli_integration_test.rs"
[[test]]
name = "parallel_direct_push_test"
path = "tests/parallel_direct_push_test.rs"
[[test]]
name = "parallel_done_json_safety_test"
path = "tests/parallel_done_json_safety_test.rs"
[[test]]
name = "plugin_init_integration_test"
path = "tests/plugin_init_integration_test.rs"
[[test]]
name = "prompt_cli_test"
path = "tests/prompt_cli_test.rs"
[[test]]
name = "prompt_cmd_test"
path = "tests/prompt_cmd_test.rs"
[[test]]
name = "promptflow_test"
path = "tests/promptflow_test.rs"
[[test]]
name = "queue_archive_cli_test"
path = "tests/queue_archive_cli_test.rs"
[[test]]
name = "queue_burndown_snapshot_test"
path = "tests/queue_burndown_snapshot_test.rs"
[[test]]
name = "queue_graph_snapshot_test"
path = "tests/queue_graph_snapshot_test.rs"
[[test]]
name = "queue_import_undo_test"
path = "tests/queue_import_undo_test.rs"
[[test]]
name = "queue_list_eta_test"
path = "tests/queue_list_eta_test.rs"
[[test]]
name = "queue_next_eta_test"
path = "tests/queue_next_eta_test.rs"
[[test]]
name = "queue_next_test"
path = "tests/queue_next_test.rs"
[[test]]
name = "queue_prune_cli_test"
path = "tests/queue_prune_cli_test.rs"
[[test]]
name = "queue_read_only_semantics_test"
path = "tests/queue_read_only_semantics_test.rs"
[[test]]
name = "queue_search_test"
path = "tests/queue_search_test.rs"
[[test]]
name = "queue_sorting_cli_test"
path = "tests/queue_sorting_cli_test.rs"
[[test]]
name = "queue_stats_history_test"
path = "tests/queue_stats_history_test.rs"
[[test]]
name = "queue_unlock_tests"
path = "tests/queue_unlock_tests.rs"
[[test]]
name = "readme_version_error_test"
path = "tests/readme_version_error_test.rs"
[[test]]
name = "redaction_expansion_test"
path = "tests/redaction_expansion_test.rs"
[[test]]
name = "release_integration_contract_test"
path = "tests/release_integration_contract_test.rs"
[[test]]
name = "release_script_contract_test"
path = "tests/release_script_contract_test.rs"
[[test]]
name = "release_script_help_test"
path = "tests/release_script_help_test.rs"
[[test]]
name = "repair_integration_test"
path = "tests/repair_integration_test.rs"
[[test]]
name = "run_cli_overrides_contract_test"
path = "tests/run_cli_overrides_contract_test.rs"
[[test]]
name = "run_loop_continuous_test"
path = "tests/run_loop_continuous_test.rs"
[[test]]
name = "run_parallel_test"
path = "tests/run_parallel_test.rs"
[[test]]
name = "runner_cli_inventory_script_test"
path = "tests/runner_cli_inventory_script_test.rs"
[[test]]
name = "safeguard_integration_test"
path = "tests/safeguard_integration_test.rs"
[[test]]
name = "scan_cmd_test"
path = "tests/scan_cmd_test.rs"
[[test]]
name = "schema_alignment_test"
path = "tests/schema_alignment_test.rs"
[[test]]
name = "stale_lock_cleanup_test"
path = "tests/stale_lock_cleanup_test.rs"
[[test]]
name = "supervising_process_label_test"
path = "tests/supervising_process_label_test.rs"
[[test]]
name = "task_clone_cli_test"
path = "tests/task_clone_cli_test.rs"
[[test]]
name = "task_cmd_test"
path = "tests/task_cmd_test.rs"
[[test]]
name = "task_edit_auto_archive_test"
path = "tests/task_edit_auto_archive_test.rs"
[[test]]
name = "task_from_template"
path = "tests/task_from_template.rs"
[[test]]
name = "task_lifecycle_test"
path = "tests/task_lifecycle_test.rs"
[[test]]
name = "task_lock_coexistence_test"
path = "tests/task_lock_coexistence_test.rs"
[[test]]
name = "task_mutation_atomicity_test"
path = "tests/task_mutation_atomicity_test.rs"
[[test]]
name = "task_relations_cli_test"
path = "tests/task_relations_cli_test.rs"
[[test]]
name = "task_show_command_test"
path = "tests/task_show_command_test.rs"
[[test]]
name = "task_split_output_test"
path = "tests/task_split_output_test.rs"
[[test]]
name = "task_template_commands_test"
path = "tests/task_template_commands_test.rs"
[[test]]
name = "task_update_all_integration_test"
path = "tests/task_update_all_integration_test.rs"
[[test]]
name = "test_support"
path = "tests/test_support.rs"
[[test]]
name = "test_support_integration_test"
path = "tests/test_support_integration_test.rs"
[[test]]
name = "timeutil_test"
path = "tests/timeutil_test.rs"
[[test]]
name = "tutorial_test"
path = "tests/tutorial_test.rs"
[[test]]
name = "undo_integration_test"
path = "tests/undo_integration_test.rs"
[[test]]
name = "versioning_script_test"
path = "tests/versioning_script_test.rs"
[[test]]
name = "webhook_cli_test"
path = "tests/webhook_cli_test.rs"
[[test]]
name = "webhook_integration_test"
path = "tests/webhook_integration_test.rs"
[[test]]
name = "zombie_process_test"
path = "tests/zombie_process_test.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.atty]
version = "0.2"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.colored]
version = "3"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.csv]
version = "1.4"
[dependencies.ctrlc]
version = "3.5.2"
[dependencies.dialoguer]
version = "0.12"
features = ["fuzzy-select"]
[dependencies.dotenvy]
version = "0.15.7"
[dependencies.env_logger]
version = "0.11.9"
[dependencies.globset]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.indicatif]
version = "0.18"
features = ["rayon"]
[dependencies.jsonc-parser]
version = "0.29"
features = ["serde"]
[dependencies.log]
version = "0.4.29"
[dependencies.notify]
version = "8"
[dependencies.notify-rust]
version = "4"
optional = true
[dependencies.nucleo-matcher]
version = "0.3"
[dependencies.regex]
version = "1.12"
[dependencies.schemars]
version = "1.2"
features = ["derive"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.shlex]
version = "1.3"
[dependencies.tempfile]
version = "3.26.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.time]
version = "0.3.47"
features = [
"formatting",
"parsing",
"macros",
]
[dependencies.ureq]
version = "3"
features = ["json"]
[dev-dependencies.insta]
version = "1.46.3"
[dev-dependencies.serial_test]
version = "3.4.0"
[build-dependencies.vergen-gitcl]
version = "9.1"
features = ["build"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.signal-hook]
version = "0.4"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_System_Threading",
"Win32_Foundation",
"Win32_Media_Audio",
"Win32_System_Diagnostics_ToolHelp",
]