Tactus: Lua-based DSL for agentic workflows
Project description
Tactus
Tactus: A Lua-based DSL for defining and executing agentic workflows.
⚠️ Status: Alpha - Tactus is in early development. Only a subset of the specification is currently implemented. See IMPLEMENTATION.md for details on what's complete and what's missing. The API is subject to change.
Tactus lets you build AI-powered workflows by defining agents, tools, and orchestration logic. Instead of writing explicit code to handle every edge case, you define what capabilities (tools) are available and what goals the agents should achieve, then let the AI figure out how to use those tools to solve the problem.
Quick Start
Installation
pip install tactus
Your First Procedure: Hello and Done
Here's a complete working example that demonstrates the core concepts of Tactus. We define an agent with a goal and a tool, orchestrate with Lua, and include a test specification.
Create a file hello.tac:
-- 1. Define the Agent and its Tools (at top level - reusable)
agent("greeter", {
provider = "openai",
model = "gpt-4o-mini",
-- The system prompt defines the agent's goal and behavior
system_prompt = [[
You are a friendly greeter. Greet the user by name: {params.name}
When done, call the done tool.
]],
-- Optional: kick off the conversation
initial_message = "Please greet the user.",
-- Tools the agent can use (procedures can also be tools)
tools = {"done"}
})
-- 2. Define the Procedure with Parameters and Outputs
procedure({
-- Parameters (inputs to the procedure)
params = {
name = {
type = "string",
default = "World"
}
},
-- Outputs (validated return values)
outputs = {
completed = {
type = "boolean",
required = true
},
greeting = {
type = "string",
required = true
}
}
}, function()
-- Loop until the agent decides to use the 'done' tool
repeat
Greeter.turn() -- Give the agent a turn to think and act
until Tool.called("done")
-- Return the result captured from the tool call
return {
completed = true,
greeting = Tool.last_call("done").args.reason
}
end)
-- 3. Define the Test Specification (Gherkin)
specifications([[
Feature: Greeting Workflow
Scenario: Agent greets user and completes
Given the procedure has started
When the greeter agent takes turns
Then the done tool should be called exactly once
And the procedure should complete successfully
And the output completed should be True
And the output greeting should exist
]])
Run the procedure:
export OPENAI_API_KEY=your-key
tactus run hello.tac
Test the procedure to verify behavior:
tactus test hello.tac
This runs the Gherkin specification and verifies that the agent behaves correctly. You'll see output like:
Feature: Greeting Workflow
Scenario: Agent greets user and completes ... passed
Evaluate consistency across multiple runs:
tactus evaluate hello.tac --runs 10
This runs the test 10 times and reports success rate and consistency metrics, helping you identify flaky behavior.
What's happening here:
-
Agents (top level): Define reusable agents with models, prompts, and tools. When you define an agent named
greeter, the primitiveGreeter.turn()becomes available in Lua. -
Procedure with config: Takes two arguments:
- Config table: Contains
params(inputs) andoutputs(validated return values) - Function: Your workflow logic in Lua with explicit control flow
- Config table: Contains
-
Parameters (
params): Define typed inputs with defaults. These can be overridden at runtime and are available in templates as{params.name}. -
Outputs (
outputs): Define the structure of return values. Tactus validates that your procedure returns the declared fields with correct types. -
Specifications (
specifications): Gherkin BDD tests that verify your agent's behavior. These are first-class citizens in Tactus—you can run them withtactus testor evaluate consistency withtactus evaluate.
Key insight: Parameters and outputs are defined inside the procedure config because they belong to the procedure. Agents are defined at the top level because they're reusable across procedures.
Key Features
Programmatic Orchestration (Lua)
Tactus is a new programming language for AI agents. Unlike rigid configuration files, Tactus programs are written in Lua, giving you full programmatic control over execution flow. A Tactus program isn't just a script—it's a defined unit of work with declared inputs (parameters) and outputs.
You control the structure:
procedure: |
-- Explicit loops
repeat
Worker.turn()
until Tool.called("done") or Iterations.exceeded(20)
-- Conditionals
if State.get("needs_review") then
local approved = Human.approve({message = "Continue?"})
if not approved then
return {completed = false, reason = "rejected"}
end
end
-- Error handling
local ok, result = pcall(function()
return Procedure.run("risky_task", params)
end)
if not ok then
Log.error("Task failed: " .. tostring(result))
return {success = false, error = result}
end
-- Return structured results
return {
success = true,
items_processed = State.get("count"),
result = result
}
Why Lua?
Most agent frameworks rely on Python (e.g., LangChain, CrewAI). While powerful, Python presents challenges for autonomous agents: it is difficult to sandbox, its significant whitespace is fragile when generated by AI, and it carries a lot of syntactic noise.
Tactus moves agent logic into a DSL built on Lua to solve these problems:
- Sandboxed & Safe: Tactus agents run in a secure VM designed for isolation. Unlike Python, which exposes the host system, Tactus procedures can only access what you explicitly grant them.
- Malleable "Agent as Code": Lua's syntax is simple and robust, lacking Python's delicate whitespace requirements. This makes it safe for AI models to generate and modify their own code.
- High Signal-to-Noise: The DSL is optimized for agent development. The code is concise and token-efficient, making it ideal for feeding back into an LLM's context window for self-evolution.
- Introspection: A Tactus program is a structured document, not just an opaque script. The custom parser allows external tools to analyze, visualize, and build UIs for a procedure without running it.
- Explicit Control: You get standard programming constructs (loops, conditionals, error handling) rather than hidden planning logic.
This introspection capability enables the next feature: the ability to define a rigorous interface contract that any application can read.
Typed Parameters & The Contract
Parameters in Tactus are more than just variables—they form a contract defined by the program. Because parameters are typed and structured (strings, numbers, enums, booleans), any application can use the Tactus parser to introspect a program and automatically generate a UI appropriate for the channel:
- Mobile App: Native forms and inputs.
- Chat Bot: Interactive cards or guided conversation flows.
- SMS: A structured text-based interview.
- Microsoft Teams: Rich Adaptive Cards.
This separation means your agent logic remains the same, while the interface adapts to where it's running.
procedure({
params = {
topic = {
type = "string",
required = true,
description = "The topic to research"
},
depth = {
type = "string",
enum = {"shallow", "deep"},
default = "shallow"
},
max_results = {
type = "number",
default = 10
},
include_sources = {
type = "boolean",
default = true
}
}
}, function()
-- Access parameters
local topic = params.topic
local depth = params.depth
-- ...
end)
Parameters are accessed in templates as {params.topic} and in Lua as params.topic.
Multi-Model and Multi-Provider Support
Use different models and providers for different tasks within the same workflow. Every agent must specify a provider: (either directly or via default_provider: at the procedure level).
Supported providers: openai, bedrock
Mix models for different capabilities:
agent("researcher", {
provider = "openai",
model = "gpt-4o", -- Use GPT-4o for complex research
system_prompt = "Research the topic thoroughly...",
tools = {"search", "done"}
})
agent("summarizer", {
provider = "openai",
model = "gpt-4o-mini", -- Use GPT-4o-mini for simple summarization
system_prompt = "Summarize the findings concisely...",
tools = {"done"}
})
Mix providers (OpenAI + Bedrock):
agent("openai_analyst", {
provider = "openai",
model = "gpt-4o",
system_prompt = "Analyze the data...",
tools = {"done"}
})
agent("bedrock_reviewer", {
provider = "bedrock",
model = "anthropic.claude-3-5-sonnet-20240620-v1:0",
system_prompt = "Review the analysis...",
tools = {"done"}
})
Configure model-specific parameters:
agent("creative_writer", {
provider = "openai",
model = {
name = "gpt-4o",
temperature = 0.9, -- Higher creativity
max_tokens = 2000
},
system_prompt = "Write creatively...",
tools = {"done"}
})
agent("reasoning_agent", {
provider = "openai",
model = {
name = "gpt-5", -- Reasoning model
openai_reasoning_effort = "high",
max_tokens = 4000
},
system_prompt = "Solve this complex problem...",
tools = {"done"}
})
Configuration via .tac/config.yml:
# OpenAI credentials
openai_api_key: sk-...
# AWS Bedrock credentials
aws_access_key_id: AKIA...
aws_secret_access_key: ...
aws_default_region: us-east-1
# Optional defaults
default_provider: openai
default_model: gpt-4o
Asynchronous Execution
Tactus is built on async I/O from the ground up, making it ideal for LLM-based workflows where you spend most of your time waiting for API responses.
Why async I/O matters for LLMs:
- Not multi-threading: Async I/O uses a single thread with cooperative multitasking
- Perfect for I/O-bound tasks: While waiting for one LLM response, handle other requests
- Efficient resource usage: No thread overhead, minimal memory footprint
- Natural for LLM workflows: Most time is spent waiting for API calls, not computing
Spawn async procedures:
-- Start multiple research tasks in parallel
local handles = {}
for _, topic in ipairs(topics) do
handles[topic] = Procedure.spawn("researcher", {query = topic})
end
-- Wait for all to complete
Procedure.wait_all(handles)
-- Collect results
local results = {}
for topic, handle in pairs(handles) do
results[topic] = Procedure.result(handle)
end
Check status and wait with timeout:
local handle = Procedure.spawn("long_task", params)
-- Check status without blocking
local status = Procedure.status(handle)
if status.waiting_for_human then
notify_channel("Task waiting for approval")
end
-- Wait with timeout
local result = Procedure.wait(handle, {timeout = 300})
if not result then
Log.warn("Task timed out")
end
Context Engineering
Tactus gives you fine-grained control over what each agent sees in the conversation history. This is crucial for multi-agent workflows where different agents need different perspectives.
Message classification with humanInteraction:
Every message has a classification that determines visibility:
INTERNAL: Agent reasoning, hidden from humansCHAT: Normal human-AI conversationNOTIFICATION: Progress updates to humansPENDING_APPROVAL: Waiting for human approvalPENDING_INPUT: Waiting for human inputPENDING_REVIEW: Waiting for human review
Filter conversation history per agent:
agent("worker", {
system_prompt = "Process the task...",
tools = {"search", "analyze", "done"},
-- Control what this agent sees
filter = {
class = "ComposedFilter",
chain = {
{
class = "TokenBudget",
max_tokens = 120000
},
{
class = "LimitToolResults",
count = 2 -- Only show last 2 tool results
}
}
}
})
Manage session state programmatically:
-- Inject context for the next turn
Session.inject_system("Focus on the security implications")
-- Access conversation history
local history = Session.history()
-- Clear history for a fresh start
Session.clear()
-- Save/load conversation state
Session.save_to_node(checkpoint_node)
Session.load_from_node(checkpoint_node)
Why this matters:
- Token efficiency: Keep context within model limits
- Agent specialization: Each agent sees only what's relevant to its role
- Privacy: Hide sensitive information from certain agents
- Debugging: Control visibility for testing and development
Human-in-the-Loop (HITL)
Tactus has first-class support for human oversight and collaboration. You can request approval, input, or review at any point in your workflow.
Request approval before critical actions:
local approved = Human.approve({
message = "Deploy to production?",
context = {environment = "prod", version = "2.1.0"},
timeout = 3600, -- seconds
default = false
})
if approved then
deploy_to_production()
else
Log.info("Deployment cancelled by operator")
end
Request human input:
local topic = Human.input({
message = "What topic should I research next?",
placeholder = "Enter a topic...",
timeout = nil -- wait forever
})
if topic then
Procedure.run("researcher", {query = topic})
end
Request review of generated content:
local review = Human.review({
message = "Please review this generated document",
artifact = generated_content,
artifact_type = "document",
options = {
{label = "Approve", type = "action"},
{label = "Reject", type = "cancel"},
{label = "Revise", type = "action"}
},
timeout = 86400 -- 24 hours
})
if review.decision == "Approve" then
publish(generated_content)
elseif review.decision == "Revise" then
State.set("human_feedback", review.feedback)
-- retry with feedback
end
Declare HITL points for reusable workflows:
hitl("confirm_publish", {
type = "approval",
message = "Publish this document to production?",
timeout = 3600,
default = false
})
Then reference them in your procedure:
local approved = Human.approve("confirm_publish")
Cost Tracking & Metrics
Tactus provides comprehensive cost and performance tracking for all LLM calls. Every agent interaction is monitored with detailed metrics, giving you complete visibility into costs, performance, and behavior.
Real-time cost reporting:
💰 Cost researcher: $0.000375 (250 tokens, gpt-4o-mini, 1.2s)
💰 Cost summarizer: $0.000750 (500 tokens, gpt-4o, 2.1s)
✓ Procedure completed: 2 iterations, 3 tools used
💰 Cost Summary
Total Cost: $0.001125
Total Tokens: 750
Per-call breakdown:
researcher: $0.000375 (250 tokens, 1.2s)
summarizer: $0.000750 (500 tokens, 2.1s)
Comprehensive metrics tracked:
- Cost: Prompt cost, completion cost, total cost (calculated from model pricing)
- Tokens: Prompt tokens, completion tokens, total tokens, cached tokens
- Performance: Duration, latency (time to first token)
- Reliability: Retry count, validation errors
- Efficiency: Cache hits, cache savings
- Context: Message count, new messages per turn
- Metadata: Request ID, model version, temperature, max tokens
Visibility everywhere:
- CLI: Real-time cost logging per call + summary at end
- IDE: Collapsible cost events with primary metrics visible, detailed metrics expandable
- Tests: Cost tracking during test runs
- Evaluations: Aggregate costs across multiple runs
Collapsible IDE display:
The IDE shows a clean summary by default (agent, cost, tokens, model, duration) with a single click to expand full details including cost breakdown, performance metrics, retry information, cache statistics, and request metadata.
This helps you:
- Optimize costs: Identify expensive agents and calls
- Debug performance: Track latency and duration issues
- Monitor reliability: See retry patterns and validation failures
- Measure efficiency: Track cache hit rates and savings
Gherkin BDD Testing
Tactus has first-class support for behavior-driven testing using Gherkin syntax. Write natural language specifications directly in your procedure files:
specifications([[
Feature: Research Task Completion
Scenario: Agent completes basic research
Given the procedure has started
When the researcher agent takes turns
Then the search tool should be called at least once
And the done tool should be called exactly once
And the procedure should complete successfully
]])
Run tests:
# Run all scenarios once
tactus test procedure.tac
# Evaluate consistency (run 10 times per scenario)
tactus evaluate procedure.tac --runs 10
Evaluation output:
Scenario: Agent completes basic research
Success Rate: 90% (9/10)
Duration: 1.23s (±0.15s)
Consistency: 90%
⚠️ FLAKY - Inconsistent results detected
The framework provides rich built-in steps for testing Tactus primitives (tools, stages, state, iterations) and supports custom Lua step definitions. Tests run in parallel for fast feedback, and evaluations measure consistency and reliability across multiple runs.
See tactus/testing/README.md for complete documentation.
Philosophy & Research
Tactus is built on the convergence of two critical insights: the necessity of Self-Evolution for future intelligence, and the requirement for Bounded Control in present-day production.
1. The Substrate for Self-Evolution
The path to Artificial Super Intelligence (ASI) lies in Self-Evolving Agents—systems that can adapt and improve their own components over time. A major 2025 survey, A Survey of Self-Evolving Agents, identifies four dimensions where evolution must occur:
- Models: Optimizing prompts and fine-tuning weights.
- Memory: Accumulating and refining experience.
- Tools: Creating and mastering new capabilities.
- Architecture: Rewriting the flow of logic and interaction.
The "Agent as Code" Advantage
For an agent to evolve, it must be able to modify itself. In traditional frameworks, logic is locked in compiled code or complex Python class hierarchies. Tactus takes a radical approach: The entire agent is defined as data.
By defining the agent's prompts, tools, and logic in a transparent, editable Lua DSL, Tactus makes the agent's own structure accessible to itself. This textual representation allows an agent to read, analyze, and rewrite its own definition, unlocking the potential for true self-evolution across all four dimensions.
2. Production Reality: Control > Autonomy
While evolution is the future, reliability is the present requirement. Research into deployed systems (Measuring Agents in Production) shows that successful agents rely on constrained deployment and human oversight, not open-ended "magic."
Tactus bridges this gap. It offers the evolutionary potential of "Agent as Code" while enforcing the production reliability of a strict Lua runtime. You get:
- Controllability: Explicit loops and conditionals, not black-box planning.
- Human-in-the-Loop: First-class primitives for approval and oversight.
- Bounded Autonomy: The "Give an Agent a Tool" paradigm—defining capabilities and goals—within a controlled environment.
Related Projects
The AI agent space is crowded. This section explains how Tactus differs from alternatives and why you might choose it.
Tactus's core differentiator: Most frameworks embed orchestration in Python (or another host language). Tactus uses a dedicated DSL (Lua) that is token-efficient, sandboxed, and designed to be readable and modifiable by AI agents themselves. This enables self-evolution patterns where agents can inspect and rewrite their own workflow definitions—a capability that's difficult when logic is scattered across Python classes.
DSPy
DSPy (Declarative Self-improving Python) treats prompting as a compilation target. You define typed signatures and let optimizers automatically discover effective prompts, few-shot examples, or fine-tuning strategies. DSPy excels at tasks where you have training data and clear metrics—classification, RAG, information extraction—and want to programmatically iterate on prompt quality without manual tuning.
Tactus takes a different approach: rather than optimizing prompts automatically, it provides a token-efficient, sandboxed language that serves as a safe platform for user-contributed or AI-generated code. Where DSPy hides control flow behind module composition, Tactus makes it explicit—you write the loops, conditionals, and error handling while agents handle intelligence within each turn.
The frameworks are complementary: you could use DSPy to optimize the prompts that go into a Tactus agent's system_prompt, then use Tactus to orchestrate those optimized agents in a durable, human-in-the-loop workflow.
| DSPy | Tactus | |
|---|---|---|
| Core idea | Programming, not prompting | Token-efficient, AI-manipulable orchestration language |
| Optimization | Automatic (optimizers) | Manual or agent-driven self-evolution |
| Control flow | Declarative composition | Imperative Lua DSL |
| Human-in-the-loop | Not built-in | First-class citizen |
| Durability | Caching | Checkpointing + replay |
| Target | Researchers optimizing prompts | Engineers building production workflows |
LangGraph
LangGraph is LangChain's graph-based workflow engine. Like Tactus, it emphasizes explicit control flow over autonomous agent behavior—you define nodes, edges, and state transitions rather than letting agents decide what to do next.
The key difference is the host language. LangGraph embeds workflows in Python using a StateGraph API, while Tactus uses Lua. This matters for two reasons: (1) Lua is more token-efficient when included in LLM context, and (2) Lua's sandboxed execution makes it safer for AI-generated or user-contributed code. If you need agents to read, understand, and modify their own orchestration logic, a dedicated DSL is more tractable than Python class hierarchies.
| LangGraph | Tactus | |
|---|---|---|
| Orchestration language | Python (StateGraph API) | Lua DSL |
| State management | Explicit, graph-based | Explicit, imperative |
| HITL | Interrupt nodes + persistent state | First-class primitives (Human.approve(), etc.) |
| Self-evolution | Difficult (logic in Python) | Designed for it (logic in readable DSL) |
| Ecosystem | LangChain integration | Standalone, uses Pydantic-AI |
CrewAI
CrewAI takes a role-based approach where agents are modeled as team members with specific responsibilities. You define a "crew" of agents with roles, goals, and backstories, then let them collaborate on tasks.
This paradigm is intuitive for certain use cases, but it imposes a specific mental model. All naming, configuration, and documentation is built around the crew/worker metaphor. If you want that structure, CrewAI provides it out of the box. If you find it constraining—or want your orchestration logic to be AI-readable without anthropomorphic abstractions—Tactus offers more flexibility.
CrewAI recently added "Flows" for more explicit control, narrowing the gap with graph-based frameworks. But the underlying paradigm remains role-centric rather than workflow-centric.
Vendor Frameworks
The major AI companies have released their own agent frameworks:
-
OpenAI Agents SDK — Production evolution of OpenAI Swarm. Lightweight primitives (Agents, Handoffs, Guardrails) for multi-agent orchestration. Tightly coupled to OpenAI's ecosystem.
-
Google ADK (Agent Development Kit) — Modular framework with workflow agents (Sequential, Parallel, Loop) and LLM agents. Optimized for Gemini and Vertex AI deployment.
-
Microsoft AutoGen — Conversation-driven multi-agent framework where agents coordinate through message passing.
-
Meta Llama Stack — Standardized interfaces for building agentic applications with Llama models. More of an API specification than a workflow framework.
These frameworks are valuable if you're committed to a specific vendor's ecosystem. Tactus is model-agnostic (via Pydantic-AI) and designed to run anywhere—local, cloud, or AWS Lambda Durable Functions.
Other Tools
-
Pydantic-AI — Type-safe LLM integration that Tactus uses under the hood. Tactus adds orchestration, HITL, and durability on top.
-
Guidance (Microsoft) — Interleaves constrained generation with control flow. Focuses on token-level control during generation rather than workflow orchestration.
Complete Feature List
- Imperative Lua DSL: Define agent workflows with full programmatic control
- Multi-Provider Support: Use OpenAI and AWS Bedrock models in the same workflow
- Multi-Model Support: Different agents can use different models (GPT-4o, Claude, etc.)
- Human-in-the-Loop: Built-in support for human approval, input, and review
- Cost & Performance Tracking: Granular tracking of costs, tokens, latency, retries, cache usage, and comprehensive metrics per agent and procedure
- BDD Testing: First-class Gherkin specifications for testing agent behavior
- Asynchronous Execution: Native async I/O for efficient LLM workflows
- Context Engineering: Fine-grained control over conversation history per agent
- Typed Parameters: JSON Schema validation with UI generation support
- Checkpointing: Automatic workflow checkpointing and resume
- Pluggable Backends: Storage, HITL, and chat recording via Pydantic protocols
- LLM Integration: Works with OpenAI and Bedrock via pydantic-ai
- Standalone CLI: Run workflows without any infrastructure
- Type-Safe: Pydantic models throughout for validation and type safety
Note: Some features from the specification are not yet implemented, including guards, dependencies, inline procedure definitions, and advanced HITL configuration. See IMPLEMENTATION.md for the complete status.
Architecture
Tactus is built around three core abstractions:
- StorageBackend: Persists procedure state and checkpoints
- HITLHandler: Manages human-in-the-loop interactions
- ChatRecorder: Records conversation history
These are defined as Pydantic protocols, allowing you to plug in any implementation:
from tactus import TactusRuntime
from tactus.adapters.memory import MemoryStorage
from tactus.adapters.cli_hitl import CLIHITLHandler
runtime = TactusRuntime(
procedure_id="my-workflow",
storage_backend=MemoryStorage(),
hitl_handler=CLIHITLHandler(),
chat_recorder=None # Optional
)
result = await runtime.execute(yaml_config, context)
CLI Commands
# Run a workflow (displays real-time cost tracking and summary)
tactus run workflow.tac
tactus run workflow.tac --param task="Analyze data"
# Validate a workflow
tactus validate workflow.tac
# Test a workflow (run Gherkin specifications with cost tracking)
tactus test workflow.tac
# Evaluate consistency across multiple runs (includes cost metrics)
tactus evaluate workflow.tac --runs 10
All commands that execute workflows display comprehensive cost and performance metrics, including per-call costs, total costs, token usage, and timing information.
Tactus IDE
Tactus includes a full-featured IDE for editing .tac files with instant feedback and intelligent code completion.
Features
- Instant syntax validation - TypeScript parser provides immediate feedback (< 10ms)
- Semantic intelligence - Python LSP server for completions and hover info
- Monaco Editor - Same editor as VS Code
- Hybrid validation - Fast client-side syntax + smart backend semantics
- Offline capable - Basic editing works without backend
- Cross-platform - Built with Electron for desktop support
Architecture: Hybrid Validation
The IDE uses a two-layer validation approach for optimal performance:
Layer 1: TypeScript Parser (Client-Side, Instant)
- Validates syntax as you type (< 10ms)
- Works offline, no backend needed
- Shows syntax errors immediately
- ANTLR-generated from same grammar as Python parser
Layer 2: Python LSP (Backend, Semantic)
- Provides intelligent completions
- Hover documentation for agents, parameters, outputs
- Cross-reference validation
- Debounced (300ms) to reduce load
This provides the best of both worlds: zero-latency syntax checking with intelligent semantic features.
Running the IDE
# Terminal 1: Start the backend LSP server
cd tactus-ide/backend
pip install -r requirements.txt
python app.py # Runs on port 5001
# Terminal 2: Start the IDE frontend
cd tactus-ide/frontend
npm install
npm run dev # Runs on port 3000
Open http://localhost:3000 in your browser to use the IDE.
Note: Backend uses port 5001 (not 5000) because macOS AirPlay Receiver uses port 5000.
Validation Layers in Action
Layer 1: TypeScript (Instant)
- Syntax errors (missing braces, parentheses)
- Bracket matching
- Basic structure validation
- Works offline
Layer 2: Python LSP (Semantic)
- Missing required fields (e.g., agent without provider)
- Cross-reference validation (e.g., undefined agent referenced)
- Context-aware completions
- Hover documentation
- Signature help
Documentation
- Specification (DSL Reference) - The official specification for the Tactus domain-specific language.
- Implementation Guide - Maps the specification to the actual codebase implementation. Shows where each feature is implemented, what's complete, and what's missing relative to the specification.
- Testing Strategy - Testing approach, frameworks, and guidelines for adding new tests.
- Examples - Run additional example procedures to see Tactus in action
- Primitives Reference (See
tactus/primitives/) - Storage Adapters (See
tactus/adapters/)
Integration
Tactus is designed to be integrated into larger systems. You can create custom adapters for your storage backend, HITL system, and chat recording.
Development
# Clone the repository
git clone https://github.com/AnthusAI/Tactus.git
cd Tactus
# Install with dev dependencies
pip install -e ".[dev]"
# Run tests
behave --summary # BDD integration tests
pytest tests/ # Unit tests
# Run with coverage
pytest --cov=tactus --cov-report=html
# See TESTING.md for detailed testing documentation
Parser Generation
Tactus uses ANTLR4 to generate parsers from the Lua grammar for validation.
Requirements:
- Docker (required only for regenerating parsers)
- Generated parsers are committed to repo
When to regenerate:
- Only when modifying grammar files in
tactus/validation/grammar/ - Not needed for normal development
How to regenerate:
# Ensure Docker is running
make generate-parsers
# Or individually:
make generate-python-parser
make generate-typescript-parser
See tactus/validation/README.md for detailed documentation.
License
MIT License - see LICENSE file for details.
Project details
Release history Release notifications | RSS feed
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 tactus-0.5.0.tar.gz.
File metadata
- Download URL: tactus-0.5.0.tar.gz
- Upload date:
- Size: 584.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4229cc79c52d892d9a29a0ff30e81845f5a6c8511bfa14a4726a291bf26cb1da
|
|
| MD5 |
2136b018a34f394af1208df304f774a5
|
|
| BLAKE2b-256 |
ef39d427c3dcfb7f56ca05a6abeb35c7149198ec15a354e7b1ac16cf1d20503b
|
File details
Details for the file tactus-0.5.0-py3-none-any.whl.
File metadata
- Download URL: tactus-0.5.0-py3-none-any.whl
- Upload date:
- Size: 309.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b62489ad6911053aea1189866ada3ea2bc28053cccd011b138c9c324ca22187c
|
|
| MD5 |
4cd9120aff31badcf66e9455193edcd3
|
|
| BLAKE2b-256 |
1f03d9f9a57ad7755b502efa901c83fc700eb945fe244baade96c67307dc531b
|