Skip to content

Commit f26cbc8

Browse files
committed
mark tool as experimental
1 parent 81e4c0d commit f26cbc8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/src/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The commands are:
6464
search search for results on Sourcegraph
6565
search-jobs manages search jobs
6666
serve-git serves your local git repositories over HTTP for Sourcegraph to pull
67-
tool exposes tools for AI agents to interact with Sourcegraph
67+
tool exposes tools for AI agents to interact with Sourcegraph (EXPERIMENTAL)
6868
users,user manages users
6969
codeowners manages code ownership information
7070
version display and compare the src-cli version against the recommended version for your instance

cmd/src/tool.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ import (
1010

1111
var toolCmd = &cli.Command{
1212
Name: "src tool",
13-
Usage: "Exposes tools for AI agents to interact with Sourcegraph",
13+
Usage: "Exposes tools for AI agents to interact with Sourcegraph (EXPERIMENTAL)",
1414
Description: "The tool subcommand exposes tools that can be used by AI agents to perform tasks against Sourcegraph instances.",
1515
Commands: []*cli.Command{},
1616
Writer: os.Stdout,
1717
Action: func(ctx context.Context, c *cli.Command) error {
18-
fmt.Println("------ UNDER CONSTRUCTION -------")
18+
fmt.Println("Not implemented")
1919
return nil
2020
},
2121
}

0 commit comments

Comments
 (0)