zvdy

Results 46 comments of zvdy

All entries have been fixed @vitorguidi : ```sh ❯ rg "bash -ex " docker/base/start.sh 25:bash -ex /data/start_clusterfuzz.sh 2>&1 docker/chromium/base/start.sh 32:bash -ex /data/start_clusterfuzz.sh 2>&1 docker/chromium/builder/start.sh 27:bash -ex /data/start_clusterfuzz.sh 2>&1 docker/chromium/tests-syncer/start.sh 25:bash...

## Entries mentioning monorail **TODO:** Removing the folder and entries and replacing when needed with `google_issue_tracker` as monorail is deprecated ``` README.md 60:[Monorail]: https://opensource.google.com/projects/monorail configs/test/issue_trackers/config.yaml 23: type: monorail configs/test/project.yaml 102:...

I've been trying to reproduce this without success, can we get a log? I cannot see any patterns, I would like to focus on the `Running: get pods -n web`...

Another more complex edge case would be `exec -it bash `, maybe this is out of scope for kubectl-ai checking status and executing commands on the pods directly to fix/manage...

This is due to your input size, the task perhaps was too big for the model you are using, and it tried outputting too many tokens. not an error of...

> From the error it is clear that the token limit was 1M and request size was around 2M. > > Not sure what was the exact task you had...

> [!NOTE] > Perhaps it's worth changing the system prompt too, and rely strictly on the kubectl_filter, this could save some tokens This involves changing `Action` struct; https://github.com/GoogleCloudPlatform/kubectl-ai/blob/0869096f453323e16361fb44c5fc56ebf86003ec/pkg/agent/conversation.go#L430-L435

> _Will have a look at https://github.com/mvdan/sh, and refactor if this simplifies it, still, we're simply parsing kubectl commands here, logic will remain similar_

## Recent Commit Changes 1. **Robust Shell Parsing** Uses `mvdan/sh` to accurately parse complex kubectl commands, handling quotes, pipes, variables, and multi-command statements. 2. **Standardized Danger Checks via Interface** All...

> [!NOTE] removing the llm makes no sense _(to me after testing and digging into it)_, for commands like `exec` or simply the mcp, It will need to be persisted...