Skip to content

Commit 160b292

Browse files
committed
Merge branch 'release'
2 parents 2c7104e + d0a4a2e commit 160b292

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

.github/workflows/issue-comment.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@ jobs:
2020
- name: Extract prompt from comment
2121
id: extract-prompt
2222
run: |
23-
COMMENT="${{ github.event.comment.body }}"
24-
if [[ "$COMMENT" =~ "/mycoder "(.+) ]]; then
25-
PROMPT="${BASH_REMATCH[1]}"
26-
elif [[ "$COMMENT" =~ "/mycoder" ]]; then
27-
# If just /mycoder with no text after, use a default prompt
28-
PROMPT="Please review this issue and suggest next steps."
29-
else
30-
echo "No valid /mycoder command found"
31-
exit 1
32-
fi
33-
echo "prompt=$PROMPT" >> $GITHUB_OUTPUT
3423
echo "comment_url=${{ github.event.comment.html_url }}" >> $GITHUB_OUTPUT
3524
echo "comment_id=${{ github.event.comment.id }}" >> $GITHUB_OUTPUT
3625
@@ -52,4 +41,4 @@ jobs:
5241
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
5342
run: |
5443
echo "Running MyCoder for issue #${{ github.event.issue.number }} with prompt: ${{ steps.extract-prompt.outputs.prompt }}"
55-
mycoder --githubMode true --userPrompt false "On issue #${{ github.event.issue.number }} the user asked: '${{ steps.extract-prompt.outputs.prompt }}' in comment ${{ steps.extract-prompt.outputs.comment_url }}. Please address this request. If you create a PR or take actions outside the scope of this issue, please report back to the issue with a comment explaining what you did."
44+
mycoder --userWarning false --upgradeCheck false --githubMode true --userPrompt false "On issue #${{ github.event.issue.number }} in comment ${{ steps.extract-prompt.outputs.comment_url }} the user invoked the mycoder CLI via /mycoder. Can you try to do what they requested or if it is unclear, respond with a comment to that affect to encourage them to be more clear."

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [0.9.0](https://github.com/drivecore/mycoder/compare/v0.8.0...v0.9.0) (2025-03-11)
2+
3+
4+
### Bug Fixes
5+
6+
* don't save consent when using --userWarning=false ([41cf69d](https://github.com/drivecore/mycoder/commit/41cf69dee22acc31cd0f2aa9f80e36cd867fb20b))
7+
8+
9+
### Features
10+
11+
* add CLI options for automated usage scenarios ([00419bc](https://github.com/drivecore/mycoder/commit/00419bc3e060db6d0c18fc72e2d7b6957791c875))
12+
113
# [0.8.0](https://github.com/drivecore/mycoder/compare/v0.7.0...v0.8.0) (2025-03-11)
214

315
### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mycoder-monorepo",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"type": "module",
55
"private": true,
66
"packageManager": "[email protected]",

packages/agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mycoder-agent",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Agent module for mycoder - an AI-powered software development assistant",
55
"type": "module",
66
"main": "dist/index.js",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mycoder",
33
"description": "A command line tool using agent that can do arbitrary tasks, including coding tasks",
4-
"version": "0.8.0",
4+
"version": "0.9.0",
55
"type": "module",
66
"bin": "./bin/cli.js",
77
"main": "./dist/index.js",

0 commit comments

Comments
 (0)