mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-21 00:21:27 +00:00
93 lines
3.1 KiB
Rust
93 lines
3.1 KiB
Rust
#[cfg(feature = "docker")]
|
|
pub mod docker_sandbox;
|
|
|
|
pub mod agent_profile;
|
|
pub mod apply_patch;
|
|
pub mod cli;
|
|
pub mod compaction;
|
|
pub mod config;
|
|
pub(crate) mod context_window;
|
|
pub mod error;
|
|
pub mod event;
|
|
pub mod file_tracker;
|
|
pub mod history;
|
|
pub mod local_sandbox;
|
|
pub mod loop_detection;
|
|
pub mod mcp_integration;
|
|
pub mod memory;
|
|
pub mod native_tool;
|
|
pub mod profiles;
|
|
pub mod question_tools;
|
|
pub mod sandbox;
|
|
pub mod session;
|
|
pub mod skills;
|
|
pub mod subagent;
|
|
pub(crate) mod task_reminder;
|
|
pub mod todo_runtime;
|
|
pub mod todo_tools;
|
|
pub mod tool_execution;
|
|
pub mod tool_permissions;
|
|
pub mod tool_registry;
|
|
pub mod tools;
|
|
pub mod truncation;
|
|
pub mod types;
|
|
|
|
pub use agent_profile::AgentProfile;
|
|
pub use config::{
|
|
NativeToolOptions, SessionOptions, ToolAccess, ToolAccessPolicy, ToolApprovalAdapter,
|
|
ToolExposureMode, ToolHookCallback, ToolHookDecision, ToolSecrets,
|
|
};
|
|
#[cfg(feature = "docker")]
|
|
pub use docker_sandbox::{DockerSandbox, DockerSandboxOptions};
|
|
pub use error::{CompactionError, Error, InterruptReason, Result};
|
|
pub use event::Emitter;
|
|
pub use fabro_mcp::config::McpServerSettings;
|
|
pub use fabro_types::SteeringMessage;
|
|
pub use history::History;
|
|
pub use local_sandbox::LocalSandbox;
|
|
pub use loop_detection::detect_loop;
|
|
pub use memory::{MemoryDocument, discover_memory};
|
|
pub use native_tool::{NativeTool, ToolVocabulary};
|
|
pub use profiles::{
|
|
AgentProfileBuilder, AnthropicProfile, Claude5Profile, EnvContext, GeminiProfile, KimiProfile,
|
|
OpenAiProfile,
|
|
};
|
|
pub use question_tools::{
|
|
ANTHROPIC_ASK_USER_QUESTION_TOOL, AgentQuestion, AgentQuestionAnswer,
|
|
AgentQuestionAnswerStatus, AgentQuestionRuntime, AgentToolRuntime,
|
|
OPENAI_REQUEST_USER_INPUT_TOOL, register_question_tools,
|
|
};
|
|
pub use sandbox::{
|
|
CommandOutputCallback, DirEntry, ExecResult, ExecStreamingRequest, ExecStreamingResult,
|
|
GrepOptions, RefreshOutcome, Sandbox, SandboxEvent, SandboxEventCallback, StderrCollector,
|
|
StdioProcess, StdioProcessHandle, format_lines_numbered, shell_quote,
|
|
};
|
|
pub use session::{
|
|
CompletionCoordinator, Session, SessionControlHandle, SessionInputTiming,
|
|
SessionShutdownReason, StaticEnvProvider, SteeringItem, ToolEnvProvider,
|
|
};
|
|
pub use skills::Skill;
|
|
pub use subagent::{SubAgentEventCallback, SubAgentResult, SubAgentStatus, SubAgentSupervisor};
|
|
pub use todo_runtime::TodoRuntime;
|
|
pub use todo_tools::{
|
|
make_task_create_tool, make_task_get_tool, make_task_list_tool, make_task_update_tool,
|
|
make_todo_list_tool, make_update_plan_tool,
|
|
};
|
|
pub use tool_permissions::canonical_tool_name;
|
|
pub use tool_registry::{AgentEventEmitter, ToolRegistry};
|
|
pub use tools::{
|
|
WebFetchSummarizer, make_edit_file_tool, make_glob_tool, make_grep_tool, make_read_file_tool,
|
|
make_shell_tool, make_shell_tool_with_options, make_write_file_tool, register_core_tools,
|
|
};
|
|
pub use truncation::{TruncationMode, truncate_lines, truncate_output, truncate_tool_output};
|
|
pub use types::{
|
|
AgentEvent, McpToolSummary, MemoryFileSummary, Message, SessionEvent, SessionState,
|
|
SkillActivationSource, SkillSummary,
|
|
};
|
|
|
|
#[cfg(test)]
|
|
#[allow(
|
|
unreachable_pub,
|
|
reason = "Test support stays crate-visible for cross-module unit tests."
|
|
)]
|
|
pub(crate) mod test_support;
|