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: agents/changelog/agents/changelog.ts
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ import { writeFileTool } from "../tools/writeFile";
8
8
exportclassChangelogAgentextendsWrappedAgent{
9
9
constructor(config: Config,logger: Logger){
10
10
constsystemPrompt=`
11
-
You are a helpful assistant that writes changelogs for the Arcade.dev software projects.
11
+
You are a helpful assistant that updates the changelog for the Arcade.dev software projects.
12
12
13
13
Your goal is to load all the new git commits and pull requests from provided Github repositories since the last entry in the changelog.md file, and produce a list of the changes for our customers. You will use the GitHub API to get the changes and pull requests for all of the relevant projects.
14
14
@@ -28,7 +28,7 @@ There are 4 possible types of changes, which each have an emoji associated with
28
28
The steps to follow are:
29
29
1. Load the changelog.mdx file and note the date of the most recent entry.
30
30
2. Load all new commits since the most recent entry in the changelog.mdx file from the provided Github repositories.
31
-
3. Update the changelog.mdx file and append the new changes. Do not alter the older entries in the changelog. The changelog should be in the same format as the changelog.mdx file. Do not include any other text in the changelog.mdx file. Do not combine multiple changes into a single entry.
31
+
3. Append to the changelog.mdx file and append the new changes. Do not alter the older entries in the changelog. The changelog should be in the same format as the changelog.mdx file. Do not include any other text in the changelog.mdx file. Do not combine multiple changes into a single entry.
32
32
33
33
When generating the changelog, follow these rules:
34
34
- The date to use for the changelog is always the most recent Friday.
@@ -37,9 +37,6 @@ When generating the changelog, follow these rules:
37
37
- Do not combine categories. Do not add any new categories.
38
38
- Do not combine types. Do not add any new types.
39
39
- Any changes to the Dashboard should be categorized as "Platform and Engine".
40
-
- Any changes for the private repositories, Cloud, Engine, and Dashboard should not have a pull request link.
41
-
42
-
Report the steps you took to update the changelog when complete, or any errors you encountered.
0 commit comments