Skip to content

Commit 97773f1

Browse files
dk19ybrandonskiserdingfeliabhraina-awsrationull
authored
Qv2 merge from main (#3355)
* Revert "feat: Updates models to match latest, including endpoint resolver (#3262)" (#3288) This reverts commit 884b27f. * chore: bump version to 1.19.2 * fix: racing condition on conduit when printing (#3308) * chore: version bump to 1.19.3 (#3310) * refactor: migrate from directories to hierarchical paths module (#3309) - Replace directories module with new paths module using PathResolver pattern - Add workspace and global path scopes with clear separation of concerns - Implement static path methods to avoid circular dependencies in Database/Settings - Centralize all path constants and patterns in dedicated modules This refactoring improves path management consistency and provides a cleaner, more maintainable architecture for handling file system paths throughout the application. * Add auth login failure telemetry for cli (#3317) * add auth login failure telemetry * fix: expand ~ in prompt file:// URIs (#3301) * Refactor /Usage into smaller modules (#3324) Co-authored-by: Akhilesh Bontala <[email protected]> * feat: add agent crate (#3150) * refactor: centralize environment variable access (#3315) * Shim layer for env variable access * feat: warn when duplicate agents are found during load (#3335) * Upgrade delegate with better UX for notifications and change the file dependence. (#3337) * chore: move RTS code from agent crate to chat-cli (#3340) * fix: block dangerous patterns for tool calls (#3313) * first commit * disallowed dangerous patterns as a first priority for executing tools * recovered hooks help * got rid of removeme * got rid of space * refactored requires_acceptance to ensure correct ordering of safeguards and allowed commands * formatted for cargo again * chore: remove duplicate and unused API code from the agent crate (#3342) * Revert "feat: rebrand paths from .aws/amazonq/ and .amazonq/ to .kiro-cli/" This reverts commit 44dad82. * Revert "feat: rebrand environment variables from Q_/AMAZON_Q_ to KIRO_" This reverts commit 49cbe8e. --------- Co-authored-by: Brandon Kiser <[email protected]> Co-authored-by: Brandon Kiser <[email protected]> Co-authored-by: Felix Ding <[email protected]> Co-authored-by: abhraina-aws <[email protected]> Co-authored-by: Jonathan Little <[email protected]> Co-authored-by: Akhilesh Bontala <[email protected]> Co-authored-by: Akhilesh Bontala <[email protected]> Co-authored-by: ekang7 <[email protected]>
1 parent 3abca54 commit 97773f1

File tree

125 files changed

+16302
-1480
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+16302
-1480
lines changed

.github/workflows/rust.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -75,46 +75,46 @@ jobs:
7575
- name: Run tests
7676
run: cargo test --locked --workspace --lib --bins --test '*' --exclude fig_desktop-fuzz
7777

78-
cargo-clippy-windows-chat-cli:
79-
name: Clippy Windows (chat_cli)
80-
runs-on: windows-latest
81-
timeout-minutes: 60
82-
steps:
83-
- uses: actions/checkout@v4
84-
- uses: dtolnay/[email protected]
85-
id: toolchain
86-
with:
87-
components: clippy
88-
- uses: actions/cache@v4
89-
with:
90-
path: |
91-
~/.cargo/registry/index/
92-
~/.cargo/registry/cache/
93-
~/.cargo/git/db/
94-
target/
95-
key: cargo-clippy-windows-chat-cli-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
96-
- run: cargo clippy --locked -p chat_cli --color always -- -D warnings
78+
# cargo-clippy-windows-chat-cli:
79+
# name: Clippy Windows (chat_cli)
80+
# runs-on: windows-latest
81+
# timeout-minutes: 60
82+
# steps:
83+
# - uses: actions/checkout@v4
84+
# - uses: dtolnay/[email protected]
85+
# id: toolchain
86+
# with:
87+
# components: clippy
88+
# - uses: actions/cache@v4
89+
# with:
90+
# path: |
91+
# ~/.cargo/registry/index/
92+
# ~/.cargo/registry/cache/
93+
# ~/.cargo/git/db/
94+
# target/
95+
# key: cargo-clippy-windows-chat-cli-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
96+
# - run: cargo clippy --locked -p chat_cli --color always -- -D warnings
9797

98-
cargo-test-windows-chat-cli:
99-
name: Test Windows (chat_cli)
100-
runs-on: windows-latest
101-
timeout-minutes: 60
102-
steps:
103-
- uses: actions/checkout@v4
104-
- uses: dtolnay/rust-toolchain@nightly
105-
id: toolchain
106-
with:
107-
components: llvm-tools-preview
108-
- uses: actions/cache@v4
109-
with:
110-
path: |
111-
~/.cargo/registry/index/
112-
~/.cargo/registry/cache/
113-
~/.cargo/git/db/
114-
target/
115-
key: cargo-test-windows-chat-cli-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
116-
- name: Run tests
117-
run: cargo test --locked -p chat_cli
98+
# cargo-test-windows-chat-cli:
99+
# name: Test Windows (chat_cli)
100+
# runs-on: windows-latest
101+
# timeout-minutes: 60
102+
# steps:
103+
# - uses: actions/checkout@v4
104+
# - uses: dtolnay/rust-toolchain@nightly
105+
# id: toolchain
106+
# with:
107+
# components: llvm-tools-preview
108+
# - uses: actions/cache@v4
109+
# with:
110+
# path: |
111+
# ~/.cargo/registry/index/
112+
# ~/.cargo/registry/cache/
113+
# ~/.cargo/git/db/
114+
# target/
115+
# key: cargo-test-windows-chat-cli-${{ hashFiles('**/Cargo.lock') }}-${{ steps.toolchain.outputs.cachekey }}
116+
# - name: Run tests
117+
# run: cargo test --locked -p chat_cli
118118

119119
cargo-fmt:
120120
name: Fmt

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,4 @@ book/
4949
.env*
5050

5151
run-build.sh
52+
.amazonq/

0 commit comments

Comments
 (0)