Skip to content

Commit 99ff2a3

Browse files
Fix demos workflow YAML and make issue-form links absolute
1 parent e381a47 commit 99ff2a3

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/demos.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@ jobs:
2222
with:
2323
node-version: ${{ matrix.node }}
2424
- name: "MCP server + client (§5)"
25-
run: node reference/05-mcp-server-client/mcp-client.mjs | grep -F "add(2, 3) -> 5"
25+
run: |
26+
node reference/05-mcp-server-client/mcp-client.mjs | grep -F "add(2, 3) -> 5"
2627
- name: "Coding agent (§6)"
27-
run: node reference/06-coding-agent/example.mjs | grep -F "final: Created greet.txt"
28+
run: |
29+
node reference/06-coding-agent/example.mjs | grep -F "final: Created greet.txt"
2830
- name: "Token accounting (§7)"
29-
run: node reference/07-token-accounting/example.mjs | grep -F "cache saved:"
31+
run: |
32+
node reference/07-token-accounting/example.mjs | grep -F "cache saved:"

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ There are three ways to help:
88
2. **Improve a reference implementation** (or propose a new one).
99
3. **Propose a new section** (rare — the stack is deliberately small).
1010

11-
The fastest path is opening an **[Add a resource](../../issues/new?template=add-a-resource.yml)** issue. PRs that edit `README.md` directly are welcome too.
11+
The fastest path is opening an **[Add a resource](https://github.com/TheSeydiCharyyev/build-your-own-agent/issues/new?template=add-a-resource.yml)** issue. PRs that edit `README.md` directly are welcome too.
1212

1313
---
1414

@@ -55,7 +55,7 @@ If a section is well-covered by external tutorials, it does **not** need our own
5555

5656
## Submitting
5757

58-
- **Issue:** use the [Add a resource](../../issues/new?template=add-a-resource.yml) form. Best for a single link.
58+
- **Issue:** use the [Add a resource](https://github.com/TheSeydiCharyyev/build-your-own-agent/issues/new?template=add-a-resource.yml) form. Best for a single link.
5959
- **PR:** keep it small — one section, or one reference implementation, per PR. Edit `README.md` (and add a `reference/` folder if relevant). No need to touch unrelated sections.
6060

6161
The maintainer curates the final wording and ordering. If your link is solid but the blurb changes, that's normal.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Safety and control: input/output guardrails, approval gates, and human-in-the-lo
171171

172172
Curated links and reference implementations are gatekept for quality — this is a map you can trust, not a dump of every link, so **most submissions are refined or declined**, not merged as-is.
173173

174-
- **Suggest a resource** — open an [Add a resource](../../issues/new?template=add-a-resource.yml) issue.
174+
- **Suggest a resource** — open an [Add a resource](https://github.com/TheSeydiCharyyev/build-your-own-agent/issues/new?template=add-a-resource.yml) issue.
175175
- **Read the bar first**[CONTRIBUTING.md](CONTRIBUTING.md) covers inclusion criteria, the entry format, and how reference implementations work.
176176

177177
## License

0 commit comments

Comments
 (0)