Skip to content

Commit 8cac7bf

Browse files
committed
Default to Agent Shell on startup.
1 parent 13f6c2e commit 8cac7bf

6 files changed

Lines changed: 5 additions & 32 deletions

File tree

scripts/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# Shell scripts
22

3-
- `shell.sh` runs the application in interactive shell mode.
4-
- `mcp_server.sh` runs an MCP server that will expose MCP tools over SSE.
3+
- `shell.sh` runs the application in interactive shell mode.

scripts/mcp_server.cmd

Lines changed: 0 additions & 9 deletions
This file was deleted.

scripts/mcp_server.sh

Lines changed: 0 additions & 6 deletions
This file was deleted.

scripts/shell_docker.cmd

Lines changed: 0 additions & 9 deletions
This file was deleted.

scripts/shell_docker.sh

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/main/java/com/embabel/template/ProjectNameApplication.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@
1717

1818
import org.springframework.boot.SpringApplication;
1919
import org.springframework.boot.autoconfigure.SpringBootApplication;
20+
import com.embabel.agent.config.annotation.EnableAgentShell;
21+
import com.embabel.agent.config.annotation.LoggingTheme;
22+
2023

2124
@SpringBootApplication
25+
@EnableAgentShell(loggingTheme=LoggingTheme.STARWARS)
2226
class ProjectNameApplication {
2327
public static void main(String[] args) {
2428
SpringApplication.run(ProjectNameApplication.class, args);

0 commit comments

Comments
 (0)