- Introduced a new cron job system allowing users to schedule automated tasks via the CLI, supporting one-time reminders and recurring jobs.
- Added commands for managing cron jobs: `/cron` to list jobs, `/cron add` to create new jobs, and `/cron remove` to delete jobs.
- Implemented job storage in `~/.hermes/cron/jobs.json` with output saved to `~/.hermes/cron/output/{job_id}/{timestamp}.md`.
- Enhanced the CLI and README documentation to include detailed usage instructions and examples for cron job management.
- Integrated cron job tools into the hermes-cli toolset, ensuring they are only available in interactive CLI mode.
- Added support for cron expression parsing with the `croniter` package, enabling flexible scheduling options.
34 lines
573 B
Plaintext
34 lines
573 B
Plaintext
# Core dependencies
|
|
openai
|
|
python-dotenv
|
|
fire
|
|
httpx
|
|
rich
|
|
tenacity
|
|
prompt_toolkit
|
|
|
|
# Web tools
|
|
firecrawl-py
|
|
|
|
# Image generation
|
|
fal-client
|
|
|
|
# mini-swe-agent dependencies (for terminal tool)
|
|
# Note: Install mini-swe-agent itself with: pip install -e ./mini-swe-agent
|
|
pyyaml
|
|
requests
|
|
jinja2
|
|
pydantic>=2.0
|
|
litellm>=1.75.5
|
|
typer
|
|
platformdirs
|
|
|
|
# Optional: For Docker backend (recommended)
|
|
# Requires Docker installed and user in 'docker' group
|
|
|
|
# Optional: For Modal backend (cloud execution)
|
|
# modal
|
|
# boto3
|
|
|
|
# Optional: For cron expression parsing (cronjob scheduling)
|
|
croniter |