Open
Conversation
- Removed redundant chat session code from individual test files.
… (TI-3, TI-5) (aws#2545) - Add pattern filtering foundation with --include/--exclude CLI flags (TI-3) - Implement knowledge settings integration with database system (TI-5) - Add comprehensive pattern filter module with glob-style support - Enhance file processor with async pattern filtering capabilities - Add extensive test coverage for pattern filtering functionality - Update knowledge CLI with improved error handling and validation - Add settings support for chunk size, overlap, and file limits Co-authored-by: Kenneth S. <kennvene@amazon.com>
…s#2604) * add mapping * adjust import location * compare name first
…pport for BM25 (aws#2608) * [feat] Adds support to embedding-type - Remove unused BM25TextEmbedder from embedder factory - Replace with MockTextEmbedder for Fast embedding type - Remove bm25.rs file and related imports/exports - Fix BM25Context and SemanticContext to save data after adding points - Fix BM25 data filename from bm25_data.json to data.bm25.json - Add base_dir storage to ContextManager for proper path resolution - Major refactoring to async context management with background operations - Adds separate optimized index for bm25 - Fix all clippy warnings and remove dead code BM25 search now works correctly with persistent contexts. * fix: Update cancel_most_recent_operation to use OperationManager - Fix cancel_most_recent_operation to delegate to OperationManager instead of accessing active_operations directly - Add missing cancel_most_recent_operation method to OperationManager - Ensures proper separation of concerns in the refactored architecture * fix: Remove BM25 from benchmark tests - Remove BM25TextEmbedder references from benchmark_test.rs - Remove benchmark_bm25_model function - Keep only Candle model benchmarks - Fixes compilation error after BM25TextEmbedder removal * docs: Update semantic-search-client README for index types - Update description to mention BM25 and vector embeddings - Add Multiple Index Types feature - Update Embeddings section to Index Types section - Remove ONNX references (no longer supported) - Reflect Fast (BM25) vs Best (Semantic) terminology - Update section headers for consistency * fix: remove auto-save from context add_data_points methods - Remove automatic save() calls from add_data_points in both semantic_context.rs and bm25_context.rs - Add explicit save() calls in context_creator.rs after data addition is complete - Improves performance by avoiding multiple disk writes during batch operations - Addresses PR aws#2608 feedback about inefficient disk I/O on each context addition * fix: resolve compilation error and operation cancel warnings - Fix return type mismatch in knowledge_store.rs cancel_operation method - Change cancel_most_recent_operation to return Ok instead of Err when no operations exist - Eliminates 'Failed to cancel operations' warnings when no operations are active * fix: improve error handling and code cleanup - Update error handling in knowledge_store.rs - Clean up context_creator.rs formatting and comments --------- Co-authored-by: Kenneth S. <kennvene@amazon.com>
* feat: add github action for release notification
* changes prompt list result to be sent over via messenger * changes tool manager orchestrator tasks to keep prompts * changes mpsc to broadcast * restores prompt list functionality * restore prompt get functionality * adds api on tool manager to hotswap * spawns task to send deinit msg via messenger * adds slash command to hotswap agent * modifies load tool wait time depending on context * adds comments to retry logic for prompt completer * fixes lint * adds pid field to messenger message * adds interactive menu for swapping agent * fixes stale mcp load record * documents build method on tool manager builder and refactor to make the build method smaller
…#2612) - Add globset-based pattern matching to support wildcards (* and ?) in allowedTools - Create util/pattern_matching.rs module with matches_any_pattern function - Update all native tools (fs_read, fs_write, execute_bash, use_aws, knowledge) to use pattern matching - Update MCP custom tools to support wildcard patterns while preserving exact server-level matching - Standardize imports across tool files for consistency - Maintain backward compatibility with existing exact-match behavior Enables agent configs like: - "fs_*" matches fs_read, fs_write - "@mcp-server/tool_*" matches tool_read, tool_write - "execute_*" matches execute_bash, execute_cmd
* first pass * add notification when /mcp & /tools * clear all tool related filed in agent * store mcp_enabled in chatsession & conversationstate * delete duplicate api call * set mcp_enabled value after load * remove clear mcp configs method * clippy * remain@builtin/ and *, add a ut for clear mcp config
* adds warnings for when tool settings are overridden by allowed tools * adjusts tool settings eval order * modifies doc * moves warning to be displayed after splash screen * canonicalizes paths prior to making glob sets * simplifies overridden warning message printing logic * adds more doc on path globbing
- Add /tangent command to toggle between normal and tangent modes - Preserve conversation history during tangent for context - Restore main conversation when exiting tangent mode - Add Ctrl+T keyboard shortcut for quick access - Visual indicator: green [T] prompt in tangent mode - Comprehensive tests for state management and UI components Allows users to explore side topics without polluting main conversation context.
added 30 commits
November 27, 2025 13:55
…d refactor the naming for integrations.
…i setup --input-method subcommand.
…cs --force,diagnostics --verbose subcommands
…d. partially completed.
…pre_subommand,kiro_cli_init_fish_post_subommand,kiro_cli_init_nu_pre_subommand,kiro_cli_init_nu_post_subommand,kiro_cli_init_help_shorthand_subommand,kiro_cli_init_bash_verbose_bash_pre_subommand,iro_cli_init_bash_verbose_bash_post_subommand,kiro_cli_init_verbose_zsh_pre_subommand,kiro_cli_init_verbose_zsh_post_subommand
…erbose fish post and kiro-cli init --verbose fish pre subcommands
…nd post and rename subcommand
…ase automation for kiro-cli init zsh pre, kiro-cli init zsh -v post, kiro-cli init nu pre,kiro-cli init -v nu post sub commands.
…t -v nu pre and post command.
…m,kiro-cli theme --list,kiro-cli theme --help
…o-cli theme --verbose kiro-cli theme -h subcommand
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes