Skip to content

Commit 57c8062

Browse files
committed
chore(.gitignore): add "agent-skills/" to the ignore list
1 parent fd6753e commit 57c8062

9 files changed

Lines changed: 752 additions & 573 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ bun.lockb
2929
# Leptos
3030
/site/
3131
.rumdl_cache/
32-
agent-skills/

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ tokio = "1.50.0"
4949
tokio-stream = "0.1.18"
5050
tokio-util = "0.7.18"
5151
toml = "1.1.0"
52-
tower = "0.5"
52+
tower = { version = "0.5", features = ["timeout", "limit", "util"] }
5353
tracing = "0.1.44"
5454
tracing-opentelemetry = "0.32.1"
5555
tracing-subscriber = "0.3.23"

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2024-2026 LongCipher Team
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 149 additions & 364 deletions
Large diffs are not rendered by default.

crates/bob-core/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,5 +108,8 @@ pub use resilience::{
108108
pub use tool_policy::{
109109
intersect_allowlists, is_tool_allowed, merge_allowlists, normalize_tool_list, tools_match,
110110
};
111-
pub use typed_tool::{DynamicToolAdapter, TypedTool, tool_descriptor};
111+
pub use typed_tool::{
112+
ChainedToolPorts, Complete, Described, FilteredToolPort, Incomplete, ToolKind, ToolPortExt,
113+
ToolSource, TypedToolAdapter, TypedToolBuilder, TypedToolExt, TypedToolPort,
114+
};
112115
pub use types::*;

0 commit comments

Comments
 (0)