You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+20-18Lines changed: 20 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,33 +113,35 @@ Before you begin, you'll need to install a few tools:
113
113
114
114
9.**Running in other directories**:
115
115
116
-
a. In order to run the CLI from other directories, you need to first publish the agents to the database.
116
+
In order to run the CLI from other directories, you need to first publish the agents to the database.
117
117
118
-
First, create a publisher profile at http://localhost:3000/publishers. Make sure the `publisher_id` is `codebuff`.
118
+
-First, create a publisher profile at http://localhost:3000/publishers. Make sure the `publisher_id` is `codebuff`.
119
119
120
-
Run:
120
+
-Run:
121
121
122
-
```bash
123
-
bun run start-bin publish base
124
-
```
122
+
```bash
123
+
bun run start-bin publish base
124
+
```
125
125
126
-
It will give you an error along the lines of `Invalid agent ID: [some agent ID]`, e.g. `Invalid agent ID: context-pruner`. You need to publish that agent at the same time, e.g.:
126
+
- It will give you an error along the lines of `Invalid agent ID: [some agent ID]`, e.g. `Invalid agent ID: context-pruner`. You need to publish that agent at the same time, e.g.:
127
127
128
-
```bash
129
-
bun run start-bin publish base context-pruner
130
-
```
128
+
```bash
129
+
bun run start-bin publish base context-pruner
130
+
```
131
131
132
-
Repeat this until there are no more errors. As of the time of writing, the command required is:
132
+
- Repeat this until there are no more errors.
133
133
134
-
```bash
135
-
bun start-bin publish base context-pruner file-explorer file-picker researcher thinker reviewer
136
-
```
134
+
- As of the time of writing, the command required is:
137
135
138
-
b. Now, you can start the CLI in any directory by running:
136
+
```bash
137
+
bun start-bin publish base context-pruner file-explorer file-picker researcher thinker reviewer
138
+
```
139
139
140
-
```bash
141
-
bun run start-bin --cwd [some/other/directory]
142
-
```
140
+
- Now, you can start the CLI in any directory by running:
0 commit comments