Skip to content

Commit ef53bd0

Browse files
authored
Merge pull request #11 from Dippys/dev
fix .md files
2 parents 03f29ef + f54ae88 commit ef53bd0

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

AGENTS.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Activate the relevant skill checklist before editing code in that domain:
2727
- `message-contracts`
2828
- Trigger: editing `Turbo.Primitives/Messages/Incoming/**` or outgoing composer payload mappings.
2929
- Enforce: explicit mandatory fields, no placeholder payloads when source data exists.
30-
- `revision-protocol` (cross-repo)
30+
- `revision-protocol`
3131
- Trigger: changes referencing `Revision<id>` packet mappings.
32-
- Enforce: edit plugin revision tree in `../turbo-sample-plugin/TurboSamplePlugin/Revision/**`.
32+
- Enforce: edit `Turbo.Revisions/Revision<id>/**` in `turbo-cloud`.
3333

3434
## Priority order
3535
1. Build and quality checks in repo files (`Directory.Build.props`, `Directory.Build.targets`, `.editorconfig`)
@@ -68,9 +68,7 @@ Default output format:
6868
- Avoid dead code, unused allocations, and broad catch blocks that hide errors (see **Orleans grain development rules** for specifics).
6969
- For revision compatibility work, prefer restoring/adding missing incoming message contracts in `Turbo.Primitives/Messages/Incoming/**` before mutating serializer/composer payload behavior.
7070
- Do not alter serializer/composer behavior by replacing real payload writes with placeholder constants (for example, unconditional `WriteInteger(0)`) unless explicitly requested.
71-
- If work references `Revision<id>` parsers/serializers, edit the plugin repo path:
72-
- `../turbo-sample-plugin/TurboSamplePlugin/Revision/**`
73-
- Do not hallucinate those trees into `turbo-cloud`.
71+
- If work references `Revision<id>` parsers/serializers, edit `Turbo.Revisions/Revision<id>/**` in `turbo-cloud`.
7472

7573
## Orleans grain development rules
7674
These rules exist because every one of these mistakes has shipped and caused real issues.

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This adapter points Claude to the canonical AI contract for this repository.
1212
- Keep packet handlers orchestration-only.
1313
- Do not query database contexts/repositories from packet handlers.
1414
- Do not send composers directly to sockets/sessions from handlers; route via `PlayerPresenceGrain.SendComposerAsync`.
15-
- For `Revision<id>` parser/serializer work, edit `../turbo-sample-plugin/TurboSamplePlugin/Revision/**`, not `turbo-cloud`.
15+
- For `Revision<id>` parser/serializer work, edit `./turbo-cloud/Turbo.Revisions/Revision**`.
1616

1717
## Validation commands
1818
```bash

CODEX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This adapter points Codex to the canonical AI contract for this repository.
1212
- Keep packet handlers orchestration-only.
1313
- Do not query database contexts/repositories from packet handlers.
1414
- Do not send composers directly to sockets/sessions from handlers; route via `PlayerPresenceGrain.SendComposerAsync`.
15-
- For `Revision<id>` parser/serializer work, edit `../turbo-sample-plugin/TurboSamplePlugin/Revision/**`, not `turbo-cloud`.
15+
- For `Revision<id>` parser/serializer work, edit `./turbo-cloud/Turbo.Revisions/Revision**`.
1616

1717
## Validation commands
1818
```bash

0 commit comments

Comments
 (0)