Skip to content

Update version to 0.1.0-SNAPSHOT #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
<parent>
<groupId>com.embabel.build</groupId>
<artifactId>embabel-build-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
</parent>
<groupId>com.embabel.coding</groupId>
<artifactId>coding-agent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Embabel Coding Agent</name>
<description>Embabel Agentic Flow for Software Engineers</description>

<properties>
<embabel-common.version>1.0.0-SNAPSHOT</embabel-common.version>
<embabel-agent-api.version>1.0.0-SNAPSHOT</embabel-agent-api.version>
<examples-common.version>1.0.0-SNAPSHOT</examples-common.version>
<embabel-common.version>0.1.0-SNAPSHOT</embabel-common.version>
<embabel-agent-api.version>0.1.0-SNAPSHOT</embabel-agent-api.version>
<examples-common.version>0.1.0-SNAPSHOT</examples-common.version>
</properties>

<!-- Embabel BOM(s) -->
Expand Down
6 changes: 3 additions & 3 deletions src/main/kotlin/com/embabel/coding/agent/Coder.kt
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class Coder(
promptContributors = listOf(project, coderProperties.codeModificationDirections()),
).create(
"""
Execute the following user request to modify code in the given project.
Execute the following user request to modify code in the given project.
Use the project information to help you understand the code.
The project will be in git so you can safely modify content without worrying about backups.
Return an explanation of what you did and why.
Expand Down Expand Up @@ -241,12 +241,12 @@ class Coder(
).create(
"""
Modify code in the given project to fix the broken build.

Use the project information to help you understand the code.
The project will be in git so you can safely modify content without worrying about backups.
Return an explanation of what you did and why.
Consider the build failure report.

DO NOT BUILD THE PROJECT. JUST MODIFY CODE.
Consider the following user request for the necessary functionality:
"${codeModificationRequest.request}"
Expand Down
17 changes: 16 additions & 1 deletion src/main/kotlin/com/embabel/coding/agent/CodingCommands.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/*
* Copyright 2024-2025 Embabel Software, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.embabel.coding.agent

import org.springframework.shell.standard.ShellComponent
Expand All @@ -16,4 +31,4 @@ class CodingCommands(private val taskFocus: TaskFocus) {
fun setFocus(@ShellOption name: String): String {
return taskFocus.setFocus(name)?.root ?: "No project found with name containing '$name'."
}
}
}
16 changes: 15 additions & 1 deletion src/main/kotlin/com/embabel/coding/agent/TaskFocus.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/*
* Copyright 2024-2025 Embabel Software, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.embabel.coding.agent

import com.embabel.coding.domain.SoftwareProject
Expand All @@ -22,4 +37,3 @@ class TaskFocus(private val softwareProjectRepository: SoftwareProjectRepository
return newFocus
}
}