Skip to content

Commit d3bfe1d

Browse files
Copilotalexec
andauthored
Remove empty frontmatter from documentation examples (#9)
* Initial plan * Remove empty frontmatter from documentation examples Co-authored-by: alexec <1142830+alexec@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: alexec <1142830+alexec@users.noreply.github.com>
1 parent ebe5da6 commit d3bfe1d

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ mkdir -p .coding-agent-context/{prompts,memories}
5959

6060
2. Create a memory file (`.coding-agent-context/memories/project-info.md`):
6161
```markdown
62-
---
63-
---
6462
# Project Context
6563

6664
- Framework: Go CLI
@@ -69,8 +67,6 @@ mkdir -p .coding-agent-context/{prompts,memories}
6967

7068
3. Create a prompt file (`.coding-agent-context/prompts/my-task.md`):
7169
```markdown
72-
---
73-
---
7470
# Task: {{ .taskName }}
7571

7672
Please help me with this task. The project uses {{ .language }}.
@@ -109,8 +105,6 @@ Markdown files with YAML frontmatter and Go template support.
109105

110106
**Example** (`.coding-agent-context/prompts/add-feature.md`):
111107
```markdown
112-
---
113-
---
114108
# Task: {{ .feature }}
115109

116110
Implement {{ .feature }} in {{ .language }}.
@@ -217,8 +211,6 @@ mkdir -p .coding-agent-context/{prompts,memories}
217211

218212
# Add a memory
219213
cat > .coding-agent-context/memories/conventions.md << 'EOF'
220-
---
221-
---
222214
# Coding Conventions
223215
224216
- Use tabs for indentation
@@ -227,8 +219,6 @@ EOF
227219

228220
# Create a task prompt
229221
cat > .coding-agent-context/prompts/refactor.md << 'EOF'
230-
---
231-
---
232222
# Refactoring Task
233223
234224
Please refactor the codebase to improve code quality.
@@ -242,8 +232,6 @@ coding-agent-context refactor
242232

243233
```bash
244234
cat > .coding-agent-context/prompts/add-feature.md << 'EOF'
245-
---
246-
---
247235
# Add Feature: {{ .featureName }}
248236
249237
Implement {{ .featureName }} in {{ .language }}.
@@ -256,8 +244,6 @@ coding-agent-context -p featureName="Authentication" -p language=Go add-feature
256244

257245
```bash
258246
cat > .coding-agent-context/memories/setup.md << 'EOF'
259-
---
260-
---
261247
# Project Setup
262248
263249
This Go project uses modules.

0 commit comments

Comments
 (0)