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
Add `--enableUserPrompt` command line option that defaults to true but can be set to false to disable the userPrompt tool for fully automated sessions.
echo "Running MyCoder for issue #${{ github.event.issue.number }} with prompt: ${{ steps.extract-prompt.outputs.prompt }}"
62
+
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."
Copy file name to clipboardExpand all lines: README.md
+45-4Lines changed: 45 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,10 @@
1
1
# MyCoder
2
2
3
-
An open-source mono-repository containing the MyCoder agent and cli.
4
-
5
-
!NOTE: To get started with the mycoder agent, [please see the CLI package](packages/cli)
3
+
Command-line interface for AI-powered coding tasks. Full details available on the main [MyCoder.ai website](https://mycoder.ai) and the [Official MyCoder.Ai Docs website](https://docs.mycoder.ai).
6
4
7
5
## Features
8
6
9
-
- 🤖 **AI-Powered**: Leverages Anthropic's Claude and OpenAI modelsfor intelligent decision making
7
+
- 🤖 **AI-Powered**: Leverages Anthropic's Claude, OpenAI models, xAI/Grok, Mistral AI, and Ollama for intelligent coding assistance
10
8
- 🛠️ **Extensible Tool System**: Modular architecture with various tool categories
11
9
- 🔄 **Parallel Execution**: Ability to spawn sub-agents for concurrent task processing
12
10
- 📝 **Self-Modification**: Can modify code, it was built and tested by writing itself
@@ -16,6 +14,49 @@ An open-source mono-repository containing the MyCoder agent and cli.
16
14
17
15
Please join the MyCoder.ai discord for support: https://discord.gg/5K6TYrHGHt
18
16
17
+
## Installation
18
+
19
+
```bash
20
+
npm install -g mycoder
21
+
```
22
+
23
+
For detailed installation instructions for macOS and Linux, including how to set up Node.js using NVM, [see our Getting Started guide](https://docs.mycoder.ai/docs/getting-started/).
24
+
25
+
## Usage
26
+
27
+
```bash
28
+
# Interactive mode
29
+
mycoder -i
30
+
31
+
# Run with a prompt
32
+
mycoder "Implement a React component that displays a list of items"
33
+
34
+
# Run with a prompt from a file
35
+
mycoder -f prompt.txt
36
+
37
+
# Disable user prompts for fully automated sessions
38
+
mycoder --enableUserPrompt false"Generate a basic Express.js server"
39
+
40
+
# Enable GitHub mode
41
+
mycoder config set githubMode true
42
+
```
43
+
44
+
### GitHub Comment Commands
45
+
46
+
MyCoder can be triggered directly from GitHub issue comments using the flexible `/mycoder` command:
47
+
48
+
```
49
+
/mycoder [your instructions here]
50
+
```
51
+
52
+
Examples:
53
+
54
+
-`/mycoder implement a PR for this issue`
55
+
-`/mycoder create an implementation plan`
56
+
-`/mycoder suggest test cases for this feature`
57
+
58
+
[Learn more about GitHub comment commands](docs/github-comment-commands.md)
59
+
19
60
## Packages
20
61
21
62
-[mycoder](packages/cli) - Command-line interface for MyCoder
0 commit comments