Skip to content

Commit c6ab4c1

Browse files
committed
Fix documentation links and renderer references
1 parent b7f7a9a commit c6ab4c1

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/copilot-instructions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ This repository uses a centralized documentation structure. All AI agents (inclu
44

55
## Canonical Documentation
66

7-
- **Agent Constraints**: [AGENTS.md](../../AGENTS.md) (Execution rules, verification, and UI principles)
8-
- **Contributor Guide**: [docs/README.md](../../docs/README.md) (Architecture, security, setup, and coding style)
9-
- **Design System**: [docs/design-system.md](../../docs/design-system.md) (Visual and CSS rules)
7+
- **Agent Constraints**: [AGENTS.md](../AGENTS.md) (Execution rules, verification, and UI principles)
8+
- **Contributor Guide**: [docs/README.md](../docs/README.md) (Architecture, security, setup, and coding style)
9+
- **Design System**: [docs/design-system.md](../docs/design-system.md) (Visual and CSS rules)
1010

1111
## Quick Reference for Agents
1212

1313
- **Environment**: All commands MUST run inside the Dev Container.
1414
- **Verification**: Run `make ready` before any commit.
15-
- **Security**: Follow strict [Security & Safety Rules](../../docs/README.md#security--safety-rules).
16-
- **Style**: Follow [Architectural Constraints](../../docs/README.md#architectural-constraints) (YARD docs, Roda organization).
15+
- **Security**: Follow strict [Security & Safety Rules](../docs/README.md#security--safety-rules).
16+
- **Style**: Follow [Architectural Constraints](../docs/README.md#architectural-constraints) (YARD docs, Roda organization).

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Welcome! This is the canonical source of truth for contributing to `html2rss-web
3232

3333
## Development Setup (Dev Container)
3434

35-
Use the repository's [Dev Container](.devcontainer/README.md) for all local development and tests.
35+
Use the repository's [Dev Container](../.devcontainer/README.md) for all local development and tests.
3636
Running the app directly on the host is not supported.
3737

3838
### Common Commands (Inside Dev Container)

docs/architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This document provides a mental model of how `html2rss-web` processes requests.
1111
[ Roda App (app/web/routes) ] <--- [ Auth / Security (app/web/security) ]
1212
|
1313
v
14-
[ Feeds Service (app/web/feeds) ] <--- [ Cache (app/web/feeds/cache) ]
14+
[ Feeds Service (app/web/feeds) ] <--- [ Cache (app/web/feeds/cache.rb) ]
1515
|
1616
v
1717
[ html2rss Gem ] <--- [ Request Strategies (Faraday / Browserless) ]
@@ -42,7 +42,7 @@ The `Html2rss::Web::Feeds::Service` orchestrates the extraction:
4242

4343
1. Checks the `Html2rss::Web::Feeds::Cache`.
4444
2. If stale/missing, calls the `html2rss` gem with the resolved strategy.
45-
3. Renders the output using `RSSRenderer` (XML) or `JSONRenderer`.
45+
3. Renders the output using `RssRenderer` (XML) or `JsonRenderer`.
4646

4747
## Extension Points
4848

0 commit comments

Comments
 (0)