Deep Agents Talon
Deep Agents Talon is the local runtime host for long-running Deep Agents. It owns the process lifecycle for channel adapters, cron schedulers, and the agent runtime in a single event loop.
Experimental: Talon is an experimental, alpha-status runtime and is subject to change or removal at any time. It is not intended for production or enterprise use.
Security support: Talon does not yet implement production-grade security controls such as complete human-in-the-loop (HITL) approval policy, channel administrator controls, sandbox-backed execution isolation, or multi-tenant boundaries. Channel access should be treated as direct access to the operator's agent, model credentials, MCP tools, and local host resources. We do not accept security vulnerability reports for the absence of these known, unimplemented Talon hardening features while Talon remains experimental.
Talon currently includes:
- A host process with graceful shutdown, per-conversation interrupt-and-continue, and
/stopcancellation. - A generic channel protocol plus WhatsApp, Telegram, and Discord adapters (WhatsApp is backed by a loopback Node bridge).
- A persistent cron scheduler with agent-facing cron tool helpers.
- MCP tool loading from explicit config paths or
~/.deepagents/.mcp.json. - Optional LangSmith tracing for each channel or cron-triggered run.
Quickstart
Run the commands in this README from libs/talon. From the repository root,
prefix uv commands with --directory libs/talon.
cd libs/talon
uv sync --group test
AGENT_ASSISTANT_ID=local AGENT_MODEL=<provider>:<model-id> uv run deepagents-talon --once
If AGENT_MODEL is unset, Talon starts with the echo runtime. This is useful for checking host lifecycle and channel wiring without provider credentials.
Assistant state lives under ~/.deepagents/<assistant_id>/ by default. The host creates restrictive state directories for the materialized agent manifest, channel sessions, and cron jobs, and persists conversation checkpoints in checkpoints.sqlite so chat history survives restarts. The default local execution workspace is the current working directory; set DEEPAGENTS_TALON_WORKSPACE to use a different directory. The per-invocation graph recursion limit defaults to 500; set DEEPAGENTS_TALON_RECURSION_LIMIT to tune it.
Conversation history
Talon archives channel conversations in checkpoints.sqlite without automatic
expiry. The agent can list, search, and read past sessions in bounded pages,
restricted to the current channel and chat. History survives context compaction;
text, tool-call arguments, and distinct message revisions are retained.
/newstarts a fresh context while keeping earlier sessions searchable./reset-all-historystops active work, deletes this chat's archived sessions and checkpoints, and starts a fresh context. Other chats are unaffected. Cancellation timeouts leave history intact; deletion failures may leave a partial reset that you can retry.
Reset does not remove cron jobs, memory files, downloaded media, traces, or backups. Attachment binaries and archive-tool results are not indexed. Scheduled runs do not add conversation history, and existing checkpoints are not backfilled.
The echo runtime and unwrapped custom checkpointers do not support history tools or
reset. Custom async LangGraph checkpointers can enable history with ConversationSaver.
Set DEEPAGENTS_TALON_HISTORY_URI to mongodb://host/database or
postgresql://user:password@host/database and install the mongodb or postgres
extra (uv sync --extra mongodb). All three backends use the same archive; SQLite
is the default. This alpha requires fresh history storage. Checkpoints stay local.
Default SQLite uses the same store factory and assistant namespace as configured
backends, with its own connection to the checkpoint database.
For a separate SQLite database, set the URI to sqlite:///absolute/path/history.sqlite
or a SQLite file: URI, including connection options such as ?mode=rwc.
Paths containing spaces must be percent-encoded. All archives are
namespaced by assistant ID, so assistants can share a database.
Additional backends can be installed as Python packages without changing Talon.
Register the URI scheme in the package's pyproject.toml:
[project.entry-points."deepagents_talon.history_backends"]
mysql = "my_history_backend:open_store"
The entry point is a trusted operator-installed callable that accepts the unchanged
URI and returns an async context manager yielding an initialized LangGraph
BaseStore. It owns connection setup and cleanup, including cancellation, and
validates its backend-specific URI requirements. Talon wraps the store in its shared
archive and verifies write access before startup completes. Built-in schemes take
precedence; unknown or duplicate plugin schemes fail startup. The plugin API is
experimental and may change with Talon.
Archives require one writer per assistant. Retrieval scans at most 500 records and raises an error if it cannot complete the page within that budget.
Set DEEPAGENTS_TALON_HISTORY_VECTOR_SEARCH=1 to add semantic matches to keyword
search. Select an embedding adapter independently of the history database:
| Adapter | Install extra | Credentials | Inference |
|---|---|---|---|
local (default) |
history-local |
None | Local CPU, lazy Qwen loading |
voyage |
history-voyage |
VOYAGE_API_KEY |
Voyage API |
openai-compatible |
history-openai |
OPENAI_API_KEY or OPENROUTER_API_KEY |
HTTPS embedding API |
atlas |
mongodb |
Configure the model in Atlas | Atlas Automated Embedding |
Remote adapters do not require torch or sentence-transformers. The former history
extra is now history-local. Provider packages supply the maintained API integrations;
langchain-voyageai and langchain-openai are MIT-licensed LangChain packages.
For Voyage, install uv sync --extra history-voyage and configure:
DEEPAGENTS_TALON_HISTORY_VECTOR_SEARCH=1
DEEPAGENTS_TALON_HISTORY_EMBED_ADAPTER=voyage
DEEPAGENTS_TALON_HISTORY_EMBED_MODEL=voyage-4-large
DEEPAGENTS_TALON_HISTORY_EMBED_DIMS=1024
DEEPAGENTS_TALON_HISTORY_EMBED_MAX_INPUT_TOKENS=32000
Supply VOYAGE_API_KEY through the environment. For OpenRouter, install
history-openai, select openai-compatible, set BASE_URL below to
https://openrouter.ai/api/v1, and supply OPENROUTER_API_KEY. For example,
qwen/qwen3-embedding-8b supports 4096 dimensions and a 32768-token context.
Verify the selected model's limits in the Voyage documentation
or OpenRouter catalog.
Embedding settings use the DEEPAGENTS_TALON_HISTORY_EMBED_ prefix:
| Suffix | Meaning |
|---|---|
ADAPTER |
local, voyage, openai-compatible, or atlas |
MODEL |
Required for remote adapters; local defaults to Qwen/Qwen3-Embedding-0.6B |
DIMS |
Output width; required for remote client adapters |
MAX_INPUT_TOKENS |
Model context budget; required remotely, local defaults to 8192 |
BATCH_SIZE |
Local defaults to 4 (maximum 4); remote defaults to 32 (maximum 96) |
CONCURRENCY |
Indexing requests in flight; local uses 1, remote defaults to 4 (maximum 16) |
BYTES_PER_TOKEN |
UTF-8 bytes budgeted per token, 1-4; defaults to the worst case of 1 |
QUERY_PROMPT |
Optional query instruction; Qwen3-Embedding models default to Qwen's prefix |
SEND_DIMENSIONS |
Send the OpenAI dimensions parameter; set 0 for models that reject it |
BASE_URL |
Optional HTTPS endpoint, routable host, without credentials, query, or fragments |
API_KEY |
Optional environment override for the adapter's standard API key |
QUERY_MODEL |
Optional compatible query-time model, supported only by Atlas |
Queries retain each provider's query/document semantics on all three databases, and the instruction prefix follows the model rather than the adapter, so a Qwen3-Embedding model reached through OpenRouter is prompted like a local one.
Inputs use UTF-8 byte counts as a conservative token bound, reserving 128 tokens
for provider instructions. BYTES_PER_TOKEN converts the token limit into that
byte measure and defaults to 1, which assumes every byte can become its own token.
Natural non-ASCII text is far cheaper than that -- a CJK character is roughly three
bytes but about one token -- so the default splits transcripts a model could embed
whole. Raising it trades safety margin for fewer splits; the value is part of the
embedding fingerprint, so a change rebuilds the index.
Oversized documents are split without losing text and their vectors are combined
with a length-weighted mean, which is logged once per run because pooled documents
are compared against unpooled queries. Transcript pagination stays unchanged.
Oversized queries fall back to keyword search. Atlas requires a budget
large enough for a complete archive chunk because embedding happens server-side.
A search holds a slot of its own at both the store and the provider, so it never
queues behind indexing and may add one request above CONCURRENCY.
BASE_URL must name a routable host: address literals in loopback, private,
link-local, or reserved ranges are refused, as is localhost, because the
configured endpoint receives the provider API key. Abbreviated IPv4 spellings
that the C resolver still accepts, such as 127.1 and 2130706433, are
refused as the addresses they reach. A public name that resolves
to a private address still connects, which needs resolution-time control the
embedding clients do not expose.
Remote indexing uses bounded batches and concurrency; errors retain pending work for retry. Selecting a remote adapter sends archived text and queries to that provider and may incur charges.
Vector data uses fingerprint-specific SQLite files, PostgreSQL schemas, or MongoDB
collections, keeping incompatible dimensions separate. PostgreSQL uses exact vector
search above 2000 dimensions. Metadata and vectors always use separate Store instances.
Changing a model, endpoint, dimensions, prompt, or input budget fails startup when
an existing index is incompatible. Set DEEPAGENTS_TALON_HISTORY_REINDEX=1 explicitly
to remove the old vectors and rebuild from retained transcripts; this can incur
embedding charges. Deletion progress survives interruption. Remove the flag afterward;
it does not rebuild an already matching index. Empty old vector files/schemas/collections
remain for operator cleanup. Missing fingerprints on older indexes also require reindexing.
Reset deletes vectors even after semantic search has been disabled.
Backend plugins can optionally register deepagents_talon.history_vector_backends
under the same URI scheme. The vector factory receives (uri, *, index, generation)
and yields a separate initialized BaseStore; index=None means deletion-only mode.
It must isolate generations, own cleanup, and apply backend-specific index options.
The existing metadata factory remains unchanged. Atlas mode requires MongoDB.
search_conversations returns results, indexing coverage, and an opaque
next_after token. Continue with the same query and chat; expired tokens require
a new search. Semantic errors and timeouts fall back to keyword matches. Unknown
or pending indexing coverage means an empty page does not prove history is absent.
When asked, the agent can use delete_conversations with one session ID or a list
from list_conversations or search_conversations. This deletes those sessions'
transcripts, search indexes, and checkpoints in the current chat. The active
conversation is protected; use /new before asking to delete it. Failed batches
may be partially deleted and can be retried with the same IDs.
Interrupt and Continue
A new message in a conversation cancels the active turn, records an interruption marker after the latest committed graph checkpoint, and starts the new message on the same thread. Partial output from the cancelled turn is not fabricated or delivered. /stop and /new also recover interrupted state; process shutdown does not. If cancellation does not finish within 30 seconds, Talon leaves the existing run isolated and does not start the new message; restart Talon to recover.
Local Agent Activity Logs
Set DEEPAGENTS_TALON_AGENT_ACTIVITY_LOGGING=true to emit agent run, model activity, and tool call events to the local process logs at INFO. Tool inputs and outputs are redacted and truncated to 1,000 characters, but may still contain sensitive application data; enable these logs only where local log access is appropriately restricted. “Thinking” events report model-call lifecycle activity and do not expose hidden chain-of-thought.
Tool Approvals
Each assistant has one fixed policy at TalonConfig.home / "tools.json", normally
~/.deepagents/<assistant_id>/tools.json. It is a flat JSON object mapping exact
tool names to booleans: true requires a channel approval prompt; false does
not. There are no patterns or per-agent policy files. The defaults are:
{
"update_tool_approvals": true,
"delete_conversations": true,
"update_mcp_server": true,
"start_async_task": true
}
Native and container startup create these defaults when the file is missing and
preserve existing configuration. Unspecified tools default to false; listing,
searching, and reading conversation history do not prompt by default. A false value controls prompting, not tool
availability or authorization. There is no migration from the old approval settings.
Read get_tool_approvals before editing:
toolsis the persisted policy;active_toolsis the current invocation's policy.persisted_revisionis the revision to use for the next write;active_revisionidentifies the current invocation's snapshot.saved_changes_inactiveindicates that saved changes are not active in this invocation.
Call update_tool_approvals(updates={"execute": true, "delete_conversations": true}, expected_revision=<persisted_revision>) with an updates mapping and the revision
returned by the read. The batch is atomic compare-and-swap: a stale revision
rejects the entire write, and unrelated entries are preserved. Read again and
review before retrying; do not replace the whole file to resolve a conflict.
Saved changes activate on the next invocation without a restart. Existing turns and tasks keep their policy snapshot. An invalid file fails closed on the next invocation rather than silently using an older policy; repair it as the operator.
Policy self-edits are checked against the pre-edit policy, so disabling
update_tool_approvals prompting cannot bypass the approval required for that
edit. An operator is required even when its prompt is false. In self exposure,
messages identified as from_self qualify without an extra operator list;
otherwise only the configured channel operator IDs qualify, not chat/user
allowlists or mention matches. Configure DEEPAGENTS_TALON_WHATSAPP_OPERATOR_ID,
DEEPAGENTS_TALON_TELEGRAM_OPERATOR_ID, or DEEPAGENTS_TALON_DISCORD_OPERATOR_ID
for the applicable channel. Unidentified senders, scheduled runs, detached workers,
and background-result follow-ups cannot edit policy. Unattended follow-ups cannot
start interactive approvals or authorization flows.
DeepAgentRuntime no longer accepts interrupt_on; embedding hosts can pass an
approval_store=ToolApprovalStore(path) instead. The underlying Deep Agents
interrupt_on graph API is unchanged. Embedding hosts are responsible for supplying
trusted AgentRequest.metadata["tool_approval_operator"] authorization; never copy
that value from model arguments or untrusted inbound metadata.
Keep the assistant home outside the workspace, just like MCP configuration, and
persist its parent directory rather than bind-mounting a single tools.json:
updates use atomic file replacement. These controls are not a sandbox boundary.
A shell running as the same UID can bypass the tool API and edit the file directly;
filesystem isolation must be enforced separately. Talon-built local subagents inherit
this policy for their attached tools. Local tool gates do not enforce policy inside
opaque remote or precompiled graphs: start_async_task gates delegation, not the
remote graph's internal calls.
The WhatsApp channel uses a local Node bridge packaged with this library. The Python adapter talks to the bridge over loopback only.
cd deepagents_talon/channels/whatsapp_bridge
npm install
cd ../../..
DEEPAGENTS_TALON_WHATSAPP_ENABLED=true \
DEEPAGENTS_TALON_WHATSAPP_START_BRIDGE=true \
AGENT_ASSISTANT_ID=whatsapp-local \
AGENT_MODEL=<provider>:<model-id> \
uv run deepagents-talon --whatsapp
The bridge prints a QR code during pairing. By default, inbound exposure is self, so only messages from the paired account trigger the agent. Configure DEEPAGENTS_TALON_WHATSAPP_EXPOSURE=allowlist with DEEPAGENTS_TALON_WHATSAPP_ALLOWLIST_CHATS or DEEPAGENTS_TALON_WHATSAPP_MENTION_PATTERNS to allow specific chats. DEEPAGENTS_TALON_WHATSAPP_OPERATOR_ID accepts one or more comma-separated operator IDs for self exposure. Outbound WhatsApp messages include a deepagents bot header by default so self-message conversations clearly distinguish agent replies from operator messages. Set DEEPAGENTS_TALON_WHATSAPP_BOT_HEADER to customize that label. Markdown image/video references in assistant replies may attach files only when they are relative paths inside DEEPAGENTS_TALON_OUTBOUND_MEDIA_DIR, or inside DEEPAGENTS_TALON_WORKSPACE when no outbound media directory is configured. DEEPAGENTS_TALON_MAX_MEDIA_BYTES caps inbound and outbound channel media across providers and defaults to 1073741824 (1 GiB), but WhatsApp is clamped to 67108864 (64 MiB) because the bridge library materializes downloads in memory before writing them.
Inbound voice transcription is opt-in:
DEEPAGENTS_TALON_VOICE_TRANSCRIPTION_ENABLED=true
When enabled without DEEPAGENTS_TALON_VOICE_TRANSCRIPTION_MODEL, Talon uses the same local default as the original WhatsApp example: nvidia/parakeet-tdt-0.6b-v3 through Transformers, with ffmpeg converting inbound audio to 16 kHz mono WAV first. Set DEEPAGENTS_TALON_VOICE_TRANSCRIPTION_DEVICE=cuda to use a GPU. The legacy example variables SPEECH_ENABLED and SPEECH_DEVICE are also accepted. Setting DEEPAGENTS_TALON_VOICE_TRANSCRIPTION_MODEL to a non-Parakeet model keeps the existing OpenAI SDK transcription path.
Local Parakeet and Qwen embedding model downloads share a Hugging Face cache in
$DEEPAGENTS_TALON_HOME/cache/models/huggingface (default:
~/.deepagents/cache/models/huggingface), shared across assistants.
open exposure allows arbitrary WhatsApp senders to trigger the agent while it runs with the operator's model credentials, channel credentials, MCP tool access, and local-host access when the local execution backend is active. Enabling it requires explicit acknowledgement:
DEEPAGENTS_TALON_WHATSAPP_EXPOSURE=open
DEEPAGENTS_TALON_WHATSAPP_OPEN_ACK=allow-arbitrary-senders
See ../../examples/talon-whatsapp/ for a runnable Docker Compose topology and .env reference.
Telegram
The Telegram channel uses the Bot API with long polling. Provide a bot token from BotFather and a model so Talon runs the real Deep Agents runtime instead of the echo runtime:
DEEPAGENTS_TALON_TELEGRAM_ENABLED=true \
DEEPAGENTS_TALON_TELEGRAM_BOT_TOKEN=... \
DEEPAGENTS_TALON_TELEGRAM_EXPOSURE=allowlist \
DEEPAGENTS_TALON_TELEGRAM_ALLOWLIST_USERS=123456789 \
DEEPAGENTS_TALON_TELEGRAM_ALLOWLIST_CHATS=-1001234567890 \
AGENT_ASSISTANT_ID=telegram-local \
AGENT_MODEL=<provider>:<model-id> \
uv run deepagents-talon --telegram
From the repository root, run the same host with:
DEEPAGENTS_TALON_TELEGRAM_ENABLED=true \
DEEPAGENTS_TALON_TELEGRAM_BOT_TOKEN=... \
DEEPAGENTS_TALON_TELEGRAM_EXPOSURE=allowlist \
DEEPAGENTS_TALON_TELEGRAM_ALLOWLIST_USERS=123456789 \
DEEPAGENTS_TALON_TELEGRAM_ALLOWLIST_CHATS=-1001234567890 \
AGENT_ASSISTANT_ID=telegram-local \
AGENT_MODEL=<provider>:<model-id> \
uv run --directory libs/talon deepagents-talon --telegram
In allowlist mode, DEEPAGENTS_TALON_TELEGRAM_ALLOWLIST_USERS allows private bot DMs from specific Telegram user IDs, while DEEPAGENTS_TALON_TELEGRAM_ALLOWLIST_CHATS allows channel posts from specific channel chat IDs. DEEPAGENTS_TALON_TELEGRAM_OPERATOR_ID accepts one or more comma-separated operator IDs for self exposure. DEEPAGENTS_TALON_MAX_MEDIA_BYTES caps inbound and outbound channel media across providers and defaults to 1073741824 (1 GiB); Telegram's smaller Bot API upload limits still apply. If AGENT_MODEL and DEEPAGENTS_TALON_MODEL are both unset, Talon uses the echo runtime and replies with the inbound text unchanged.
Discord
The Discord channel uses the discord.py Gateway client for real-time message delivery. Create a bot application in the Discord Developer Portal, copy its token, and enable the Message Content privileged intent under the Bot settings — without it, the bot receives events but not message text:
DEEPAGENTS_TALON_DISCORD_ENABLED=true \
DEEPAGENTS_TALON_DISCORD_BOT_TOKEN=... \
DEEPAGENTS_TALON_DISCORD_EXPOSURE=allowlist \
DEEPAGENTS_TALON_DISCORD_ALLOWLIST_USERS=123456789012345678 \
DEEPAGENTS_TALON_DISCORD_ALLOWLIST_CHATS=234567890123456789 \
AGENT_ASSISTANT_ID=discord-local \
AGENT_MODEL=<provider>:<model-id> \
uv run deepagents-talon --discord
From the repository root, run the same host with:
DEEPAGENTS_TALON_DISCORD_ENABLED=true \
DEEPAGENTS_TALON_DISCORD_BOT_TOKEN=... \
DEEPAGENTS_TALON_DISCORD_EXPOSURE=allowlist \
DEEPAGENTS_TALON_DISCORD_ALLOWLIST_USERS=123456789012345678 \
DEEPAGENTS_TALON_DISCORD_ALLOWLIST_CHATS=234567890123456789 \
AGENT_ASSISTANT_ID=discord-local \
AGENT_MODEL=<provider>:<model-id> \
uv run --directory libs/talon deepagents-talon --discord
conversation_id is the Discord channel ID, which works uniformly for DM channels and guild text channels. In allowlist mode, DEEPAGENTS_TALON_DISCORD_ALLOWLIST_USERS allows DMs from specific Discord user IDs regardless of channel, while DEEPAGENTS_TALON_DISCORD_ALLOWLIST_CHATS allows messages from specific channel IDs (DM or guild). DEEPAGENTS_TALON_DISCORD_OPERATOR_ID accepts one or more comma-separated operator IDs for self exposure, the default mode, which only accepts DMs from those operators. Outbound text over Discord's 2000-character message limit is split into multiple separate messages sent in order; outbound media is sent as a file attachment with the caption as the message content when it fits, or as a preceding separate message otherwise. DEEPAGENTS_TALON_MAX_MEDIA_BYTES caps inbound and outbound channel media across providers and defaults to 1073741824 (1 GiB). If AGENT_MODEL and DEEPAGENTS_TALON_MODEL are both unset, Talon uses the echo runtime and replies with the inbound text unchanged.
Tracing
LangSmith tracing is opt-in. Set both values before starting the host:
LANGSMITH_TRACING=true
LANGSMITH_API_KEY=...
LANGSMITH_PROJECT=deepagents-talon
When enabled, Talon wraps each agent run in a LangSmith tracing context with assistant id, conversation id, trigger metadata, and source message metadata.
Chat commands
The agent can call send_message(text) to post a progress update to the same chat
while continuing to work. Updates do not end the turn; the final reply is sent
normally. The destination is fixed by the host, and sending is disabled once the
originating turn finishes or is superseded. Runs without a channel cannot send updates.
Send /help for a brief guide to Talon, its built-in commands (/new, /stop,
and /mcp-reload), and using MCP configuration and OAuth through chat. Help does
not interrupt current work or consume a pending approval or sign-in response.
MCP Tools
Talon loads MCP servers from ~/.deepagents/.mcp.json. Set DEEPAGENTS_TALON_MCP_CONFIG to use a different path. For user-level MCP servers, edit the standard file:
{
"mcpServers": {
"linear": {
"type": "http",
"url": "https://mcp.example/mcp"
}
}
}
Set "auth": "oauth" on a remote server to enable OAuth. From WhatsApp,
Telegram, or another interactive channel, ask Talon to authenticate that configured
server. Talon calls the narrow authenticate_mcp_server capability, sends the
authorization link directly to the originating conversation, and waits for the same
operator to paste the full callback URL. The authorization link and callback bypass
the model context and traces. Newly discovered tools are available on the next channel
turn after login completes.
Run deepagents-talon mcp config to print the resolved config path. The terminal-only
deepagents-talon mcp login <server> flow remains available as an alternative.
On Linux/macOS, Talon can manage its MCP configuration through chat using
get_mcp_configuration (redacted view) and update_mcp_server (add, replace, or
remove one server). Updates require human approval by default through the
update_mcp_server entry in tools.json and reload before the next turn.
Setting that entry to false disables its prompt, not validation or secret-safety
restrictions. Unprompted updates that reuse <redacted> values may change only
allowedTools and disabledTools; other managed settings must remain unchanged.
To change those settings, supply ${ENV_VAR} references instead of redacted
values, or have the operator re-enable approval. Redaction is not permission to
redirect stored credentials.
Use ${ENV_VAR} references for credentials. Set DEEPAGENTS_TALON_MCP_CONFIG
to keep the file outside the workspace. These tools do not sandbox Talon's local
shell backend; deployments must enforce filesystem isolation separately.
After editing the configuration manually, send /mcp-reload through an authorized channel to
reload it without restarting Talon. The agent can also call
reload_mcp_configuration autonomously; that schedules the same reload before the
next agent turn.
Fleet zip exports can be materialized into a Talon-local agent directory before starting the host:
deepagents-talon import-fleet <fleet-export.zip> [--assistant-id <id>] [--target-dir <dir>]
From the repository root:
uv run --directory libs/talon deepagents-talon import-fleet ./fleet-export.zip \
--assistant-id local
By default, import-fleet writes into the selected assistant manifest directory:
~/.deepagents/<assistant_id>/, with subagent prompts in
~/.deepagents/<assistant_id>/agents/. The selected assistant id comes from
DEEPAGENTS_TALON_ASSISTANT_ID or AGENT_ASSISTANT_ID; when neither is set,
the importer uses the Fleet export filename stem. For example, crowbar.zip
imports into ~/.deepagents/crowbar/. Pass --assistant-id <id> to select a
different assistant for the import, or --target-dir <dir> to write all
imported files under an explicit directory.
Talon loads local subagents from agents/<name>/AGENTS.md using YAML frontmatter:
description is required, name defaults to the directory name, and model is
optional.
Research defaults
Talon also installs the configuration-hardening skill and its reference under the
assistant home's skills/ directory, preserving existing files. Ask it to review
tool separation or minimize tools; the default main instructions also trigger a
placement review when tools or subagents change. The skill proposes scoped changes,
uses existing confirmation controls, and verifies active attachments after reload.
Sensitive-action and access reviews are advisory: it never edits HITL/Ask controls.
Existing customized main instructions need a reviewed update to add this trigger.
On startup, homes receive any missing AGENTS.md files for main, internal-research, and
external-research, with defensive prompts. External research declares web: true in its
frontmatter, which is what attaches fetch_url and Tavily-backed web_search at
construction; the capability follows the declaration, not the directory name. Search is added
only when TAVILY_API_KEY is nonempty in the runtime environment; without it,
startup and reload still work and fetch_url remains available.
Main and internal research are constructed without them; disabling web tools leaves
external research usable without built-in web access. Internal research starts
with tools: []. Main passes additional reads through task(..., tools=[...]), such as
applicable GitHub, Notion, email, and calendar reads internally. No integrations are
connected automatically. Set persistent tools with standard tools frontmatter;
launch-time additions apply only to that task. Main retains filesystem, action tools, and existing
approval controls, chooses placement from the workflow, and mediates minimal
internal-to-external context.
Existing files are unchanged; missing research definitions are installed automatically.
Review the packaged deepagents_talon/defaults/ files,
back up affected instructions, and merge the selected changes without replacing custom
content. Call reload_subagent_configuration and inspect get_agent_tools; roll back
by restoring those files and reloading. Include restored capabilities in the rollback
review. Running tasks retain their original graphs until finished or canceled.
Prompts are not a sandbox: main filesystem/shell access, injected results, classification
mistakes, shared runtime/credentials, and retrieval of private destinations remain
operator-managed risks. The benign fixtures in tests/unit_tests/fixtures/research_injections.json
exercise missing capabilities and approval gates with scripted calls, not model refusal
or guaranteed public-only retrieval. Evaluate prompt behavior separately with your model.
Background Subagents
Talon loads local agents/<name>/AGENTS.md definitions and remote
[async_subagents] configuration at startup. After adding, editing, or deleting
definitions, the main agent can call reload_subagent_configuration to apply the
changes on subsequent turns. Ordinary turns reuse the loaded definitions. Invalid
edits retain the last valid configuration; running subagents keep their original
configuration.
Subagents use fresh task context; fork is unsupported. Attach local tools with
tools: [exact_tool_name] (omitted means none); named agents start with those configured tools.
Add web: true to grant whichever web tools the runtime has, without naming them; an agent
without it never receives them, whatever its directory is called.
There is no automatic general-purpose agent; delegate to a research role or another
configured agent. Pass a tools list to task on each launch
to add capabilities to any local agent for that task, including execute for shell access. Supply context and skill
instructions in description or select
read_file to load them. get_agent_tools shows available attachments and inactive
edits; list_subagents shows launch-time additions.
task launches local subagents and start_async_task launches remote subagents.
Both return immediately. The user can continue chatting while the main agent uses
list_subagents to inspect work and cancel_subagent to cancel it. When work
finishes, its result is passed to the main agent for processing on the next idle
turn, then the main agent replies to the channel.
Workers and pending results live only in memory and are discarded on restart.
/stop and /new cancel all subagents belonging to that conversation; ordinary
messages interrupt only the main turn. Shutdown cancels all workers. Local tool
approval policy still applies; a child needing approval reports that it could not
complete the action. Remote runs cancel when their stream disconnects.
Talon allows four simultaneous subagents, retains at most 128 unprocessed jobs, and limits each run to one hour. Completed results are capped at 64,000 characters.
Cron Schedules
create_job and edit_job accept four schedule forms:
| Form | Kind | Example |
|---|---|---|
in <N>{m,h} |
one-shot | in 30m |
every <N>{m,h} |
recurring | every 6h |
at <YYYY-MM-DD> <HH:MM> <tz> |
one-shot | at 2026-09-04 13:30 America/New_York |
daily at <HH:MM> <tz> |
recurring | daily at 08:00 America/New_York |
The wall-clock forms require an explicit IANA timezone name; there is no default
zone, and legacy POSIX aliases (EST5EDT) and bare UTC offsets (+02:00) are
rejected because they cannot express a region's future daylight-saving rules.
The agent gets that zone name from the current_time tool, which is always
available and reports the current date, time, and IANA timezone. Called with no
argument it uses the host's local zone; pass a zone name to read the clock
elsewhere. Its timezone value goes straight into a schedule string. When the
host zone name cannot be determined the tool still reports the correct local
time and UTC offset, but returns timezone: null and a note to ask the user
rather than guessing.
The timezone is stored on the job and pinned. daily at 08:00 America/New_York
fires at 08:00 New York wall-clock time no matter where the host is or which
side of a daylight-saving transition the run falls on — the next run is rebuilt
from the local date each time rather than advanced by 24 hours. Two edge cases
resolve deterministically:
- A local time skipped by a spring-forward transition snaps forward to the first
minute that exists, so
daily at 02:30fires at 03:00 local on that day rather than being skipped. - An ambiguous local time repeated by a fall-back transition resolves to its earlier occurrence, so the job fires once.
Interval schedules stay phase-locked to their previous run, so a late scheduler
tick does not shift an every 15m job off its cadence. A one-shot at schedule
that has already passed is rejected at create and edit time with the resolved
instant in the error message. Because the scheduler ticks every 60 seconds, a
run lands within the minute it is due, not on the exact second.
Cron Observability
Cron jobs are persisted in cron/jobs.json under the assistant state directory. Scheduler lifecycle events are emitted through the standard Python logger as talon_event JSON records:
cron.tickcron.dispatchcron.successcron.failurecron.deliverycron.delivery_suppressedcron.delivery_failure
These logs complement the persisted last_status and last_error fields.
Security and Data Lifecycle
Talon is single-operator by design. It does not provide multi-tenant isolation, sandbox-backed execution isolation, production-grade HITL policy enforcement, or channel administrator boundaries. Any tool approval prompt surfaced through a channel is an experimental convenience feature, not a complete security boundary. Channel exposure should be treated as direct access to the operator's agent, model credentials, MCP tools, and local host resources.
Do not file security vulnerability reports for the absence of these known, unimplemented hardening features in Talon while it remains experimental. Reports about missing enterprise controls, channel admin gates, sandbox integrations, or production HITL policy are considered feature requests for a future production-ready runtime.
Attacker-influenceable inputs include channel message text, voice transcripts, channel media metadata, downloaded media files when a channel adapter persists them for processing, web or search result content, MCP tool results, and imported manifest instructions. Treat all of those inputs as untrusted content entering the agent context.
Outbound data leaves Talon through these integrations:
- Model providers receive conversation text, cron prompts, voice transcripts, selected tool outputs, and system or manifest instructions.
- LangSmith receives trace metadata and serialized run inputs/outputs when
LANGSMITH_TRACING=true. - MCP servers receive tool arguments chosen by the model and may receive conversation-derived values.
- Tavily or other search tools receive query strings chosen by the model and may include conversation-derived values.
- Channel providers receive assistant replies and outbound media paths supplied to the channel adapter.
Sensitive local state is stored under ~/.deepagents/<assistant_id>/ by default with 0700 directories and 0600 cron files:
AGENTS.md,skills/, andagents/store the materialized assistant instructions, skills, and subagent definitions.cron/jobs.jsonstores cron prompts, origin conversation ids, message ids, run status, and errors. Active jobs are retained while enabled. Completed jobs are deleted on startup afterDEEPAGENTS_TALON_CRON_RETENTION_DAYS, default30.channels/whatsapp/stores WhatsAppLocalAuthcredentials and Chromium profile state. These credentials are retained until the operator deletes the directory, because automatic deletion would silently unpair the channel.media/inbound/is reserved for downloaded inbound media. Files older thanDEEPAGENTS_TALON_INBOUND_MEDIA_RETENTION_HOURS, default24, are deleted on startup. Inbound and outbound channel media are capped byDEEPAGENTS_TALON_MAX_MEDIA_BYTES, default1073741824(1 GiB); WhatsApp is further clamped to67108864(64 MiB). The WhatsApp bridge stores downloaded inbound media under the assistant's inbound media directory and passes local paths plus MIME metadata to the host.
Conversation persistence is intentionally not durable yet. Runtime conversation state is in-memory unless a future backend explicitly adds thread persistence.
Development
uv sync --group test
uv run --group test pytest tests/
uv run deepagents-talon
Focused verification:
make lint
make test
Resources
- LangChain Academy — Comprehensive, free courses on LangChain libraries and products, made by the LangChain team.
- Code of Conduct — community guidelines and standards
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file deepagents_talon-0.0.8.tar.gz.
File metadata
- Download URL: deepagents_talon-0.0.8.tar.gz
- Upload date:
- Size: 661.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b6aa686c2473629bd6b25d1ab08c21f850d1e98b2a34f8b1560c91972e4f2cd
|
|
| MD5 |
fc8edcb67e279935bab698eb7fabd041
|
|
| BLAKE2b-256 |
99a6e42789268ae9f7e4cb110968a097cc5d99ee9c199e73e9cddc9298944008
|
File details
Details for the file deepagents_talon-0.0.8-py3-none-any.whl.
File metadata
- Download URL: deepagents_talon-0.0.8-py3-none-any.whl
- Upload date:
- Size: 256.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55c6d19e8ce5ac4149476accddf85fe9428c710bd49267ab0e96a994e46167b3
|
|
| MD5 |
9ccfc08281301b8f36f08a20c6d748a0
|
|
| BLAKE2b-256 |
1ad1b53a0d270bdee48faee4cbb0c4fc92c28acc7773bc36cab99d79b6df1dc4
|