8000 chore: format, lint, github ignore · drivecore/mycoder@a98caad · GitHub
[go: up one dir, main page]

Skip to content

Commit a98caad

Browse files
committed
chore: format, lint, github ignore
1 parent 2022d96 commit a98caad

30 files changed

+230
-174
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ jobs:
5656
flags: '--allow-unauthenticated'
5757

5858
- name: Show Output
59-
run: echo ${{ steps.deploy.outputs.url }}
59+
run: echo ${{ steps.deploy.outputs.url }}

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ eslint.config.js
1212
pnpm-lock.yaml
1313
tsconfig.json
1414
vitest.config.js
15+
build

eslint.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ export default ts.config(
7676
'**/pnpm-lock.yaml',
7777
'**/routeTree.gen.ts',
7878
'scripts/verify-release-config.js',
79+
'**/.docusaurus',
80+
'**/build',
7981
],
8082
},
8183
);

packages/docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ This project is licensed under the MIT License - see the LICENSE file for detail
5757

5858
## Contact
5959

60-
If you have questions or feedback, please join our [Discord community](https://discord.gg/5K6TYrHGHt).
60+
If you have questions or feedback, please join our [Discord community](https://discord.gg/5K6TYrHGHt).

packages/docs/blog/authors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ben:
55
image_url: https://github.com/bhouston.png
66
socials:
77
github: bhouston
8-
x: BenHouston3D # Updated from twitter
8+
x: BenHouston3D # Updated from twitter
99
bluesky: benhouston3d.com
1010
mastodon: 'BenHouston3D@mastodon.gamedev.place'
1111

packages/docs/blog/github-mode-productivity.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ slow down development? If so, we should optimize it.
6060
```
6161

6262
**Why this works well:**
63+
6364
- Asks MyCoder to analyze its own previous work
6465
- Focuses on optimization and developer experience
6566
- Treats MyCoder as a teammate who can explain their decisions
@@ -73,6 +74,7 @@ simultaneously. Once done, submit the PR and link both issues.
7374
```
7475

7576
**Why this works well:**
77+
7678
- Groups related tasks for efficient implementation
7779
- Provides clear instructions on the desired outcome
7880
- Leverages GitHub references to maintain context
@@ -89,6 +91,7 @@ independent PR to address it.
8991
```
9092

9193
**Why this works well:**
94+
9295
- Asks MyCoder to independently investigate a problem
9396
- Provides context about potential causes
9497
- Gives clear guidance on how to proceed based on findings
@@ -103,4 +106,4 @@ Using GitHub Mode doesn't just increase productivity—it fundamentally changes
103106
- **Increased autonomy**: MyCoder can work independently on well-defined tasks
104107
- **Better accountability**: All changes are tracked, reviewed, and properly attributed
105108

106-
By structuring work through GitHub, you're providing MyCoder with a system of record that ensures continuity across tasks and makes it easy to revisit past work, turning your AI assistant into a true coding collaborator rather than a tool you need to micromanage.
109+
By structuring work through GitHub, you're providing MyCoder with a system of record that ensures continuity across tasks and makes it easy to revisit past work, turning your AI assistant into a true coding collaborator rather than a tool you need to micromanage.

packages/docs/docs/examples/_category_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"type": "doc",
66
"id": "examples/index"
77
}
8-
}
8+
}

packages/docs/docs/examples/code-development.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ lint, etc for this repo.
2020
```
2121

2222
**Why this works well:**
23+
2324
- References specific recommendations from an existing issue
2425
- Points to an example implementation in another repository as a reference
2526
- Clearly defines the scope (recommendations 2 and 3)
@@ -86,6 +87,7 @@ Vercel AI SDK.
8687
```
8788

8889
**Why this works well:**
90+
8991
- Provides detailed background on the current implementation
9092
- References specific PRs for context
9193
- Clearly outlines the desired architecture with specific components
@@ -117,6 +119,7 @@ package to its non-built state.
117119
```
118120

119121
**Why this works well:**
122+
120123
- Describes the specific command that's failing
121124
- Explains the expected behavior and the actual outcome
122125
- Shares the developer's hypothesis about the cause
@@ -136,9 +139,9 @@ action to complete before declaring success.
136139
```
137140

138141
**Why this works well:**
142+
139143
- Identifies a specific problem (GitHub action failure)
140144
- Requests a complete workflow: investigation, issue creation, and fix implementation
141145
- Sets clear expectations for verification (waiting for the GitHub action to complete)
142146

143147
**Technique:** Asking MyCoder to handle the full cycle from investigation to fix helps ensure that the problem is properly understood and addressed.
144-

packages/docs/docs/examples/code-review.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ thing? Won't that slow things down?
2222
```
2323

2424
**Why this works well:**
25+
2526
- References a specific PR and issue
2627
- Quotes specific text from the PR description
2728
- Asks a focused question about a potential issue (duplication)
@@ -39,12 +40,13 @@ docker build are still making assumptions about using
3940
npm rather than pnpm. Can you look at
4041
../Business/drivecore/mycoder-websites as an example
4142
of docker files that use pnpm and also github action
42-
workflows that use pnpm and adapt the current project
43+
workflows that use pnpm and adapt the current project
4344
yo use that style. Please create a github issue and
4445
then once the task is complete please submit a PR.
4546
```
4647

4748
**Why this works well:**
49+
4850
- Identifies a specific concern (npm vs. pnpm assumptions)
4951
- Points to a reference implementation with the desired approach
5052
- Clearly defines the expected deliverables (GitHub issue and PR)
@@ -64,6 +66,7 @@ a Github issue for this and a PR.
6466
```
6567

6668
**Why this works well:**
69+
6770
- Makes specific, focused requests for UI changes
6871
- Clearly describes the desired outcome
6972
- Specifies the process (create an issue and PR)

packages/docs/docs/examples/devops.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ the build and runs lint, etc for this repo.
2020
```
2121

2222
**Why this works well:**
23+
2324
- References specific recommendations from an existing issue
2425
- Points to an example implementation in another repository
2526
- Clearly defines the expected outcome (CI action for build validation and linting)
@@ -42,6 +43,7 @@ then once the task is complete please submit a PR.
4243
```
4344

4445
**Why this works well:**
46+
4547
- Identifies a specific configuration issue (npm vs. pnpm)
4648
- Points to a reference implementation with the desired approach
4749
- Clearly defines the expected deliverables (GitHub issue and PR)
@@ -64,11 +66,12 @@ that are depended upon.
6466
I must have some part of the configuration of the
6567
current project incorrect right? Can you create an
6668
issue for this and then investigate. You can use
67-
the command \"pnpm clean:dist\" to reset the package
69+
the command \"pnpm clean:dist\" to reset the package
6870
to its non-built state.
6971
```
7072

7173
**Why this works well:**
74+
7275
- Describes the specific command that's failing
7376
- Explains the expected behavior and the actual outcome
7477
- Shares the developer's hypothesis about the cause
@@ -89,6 +92,7 @@ success.
8992
```
9093

9194
**Why this works well:**
95+
9296
- Identifies a specific problem (GitHub action failure)
9397
- Requests a complete workflow: investigation, issue creation, and fix implementation
9498
- Sets clear expectations for verification

0 commit comments

Comments
 (0)
0