Skip to content

Commit a04bc09

Browse files
committed
Merge branch 'repo/router-tool'
2 parents c0c477f + 2278d7d commit a04bc09

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

agents/templates/configuration-template.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ What this setting does, when to change it, and risks.
1212
</Tldr>
1313

1414
:::caution
15-
If applicable, add a short warning (for example: Changes require rebuilding the admin panel. Run `yarn build` or `npm run build`.\”).
15+
If applicable, add a short warning (for example: "Changes require rebuilding the admin panel. Run `yarn build` or `npm run build`.").
1616
:::
1717

1818
## Location
1919
- Base file(s): `./config/<area>.(js|ts)`
2020
- Overrides: `./config/env/{environment}/<area>.(js|ts)`
21-
- Related env vars: see Environment variables.
21+
- Related env vars: see "Environment variables".
2222

2323
## Available options
2424
Describe each option briefly in a table and add an example.
@@ -54,7 +54,7 @@ Show per‑environment overrides in JavaScript and TypeScript.
5454

5555
<Tabs groupId="js-ts">
5656

57-
<TabItem value="javascript" label="JavaScript">
57+
<TabItem value="js" label="JavaScript" default>
5858

5959
```js title="/config/<area>.js"
6060
module.exports = ({ env }) => ({
@@ -70,7 +70,7 @@ module.exports = ({ env }) => ({
7070

7171
</TabItem>
7272

73-
<TabItem value="typescript" label="TypeScript">
73+
<TabItem value="ts" label="TypeScript">
7474

7575
```ts title="/config/<area>.ts"
7676
export default ({ env }) => ({
@@ -89,4 +89,4 @@ export default ({ env }) => ({
8989
</Tabs>
9090

9191
## Examples
92-
Provide 1–2 common configurations with path‑hinted code fences.
92+
Provide 1–2 common configurations with path‑hinted code fences.

agents/templates/feature-template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ module.exports = {
5151
```
5252

5353
<Tabs groupId="js-ts">
54-
<TabItem value="javascript" label="JavaScript">
54+
<TabItem value="js" label="JavaScript" default>
5555

5656
```js title="path: ./src/<feature>/index.js"
5757
// JS example
5858
```
5959

6060
</TabItem>
61-
<TabItem value="typescript" label="TypeScript">
61+
<TabItem value="ts" label="TypeScript">
6262

6363
```ts title="path: ./src/<feature>/index.ts"
6464
// TS example
@@ -87,4 +87,4 @@ Keep instructions concise and outcome‑oriented; include a focused example if h
8787

8888
```bash title="Example"
8989
# minimal, focused example
90-
```
90+
```

0 commit comments

Comments
 (0)