diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af707303..87aea412 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [main, develop] + branches: [develop] pull_request: - branches: [main, develop] + branches: [develop] env: CARGO_TERM_COLOR: always diff --git a/src/agent/prompts/mod.rs b/src/agent/prompts/mod.rs index 1fd28727..25146d06 100644 --- a/src/agent/prompts/mod.rs +++ b/src/agent/prompts/mod.rs @@ -478,6 +478,13 @@ pub fn is_generation_query(query: &str) -> bool { "new feature", "develop", "code", + // Plan execution keywords - needed for plan continuation + "plan", + "continue", + "resume", + "execute", + "next task", + "proceed", ]; generation_keywords