Skip to content

Commit bd51a57

Browse files
sharpninjaclaude
andcommitted
Fix CI: disambiguate TodoWorkflow reference and fix markdown lint headings
- Fully qualify TodoWorkflow as McpServer.McpAgent.Todo.TodoWorkflow in McpHostedAgentAdapterTests.cs to resolve CS0104 ambiguity with McpServer.Repl.Core.TodoWorkflow - Convert bold emphasis to ### headings in docs/REPL-USER-GUIDE.md to fix 4 MD036/no-emphasis-as-heading lint errors Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent cdd5150 commit bd51a57

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/REPL-USER-GUIDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Session logging and turn management. Captures agent activity, reasoning dialog,
171171
- `workflow.sessionlog.appendActions` — Log actions performed
172172
- `workflow.sessionlog.queryHistory` — Query past sessions
173173

174-
**Example: Open Session**
174+
### Example: Open Session
175175

176176
```yaml
177177
type: request
@@ -217,7 +217,7 @@ TODO item management with structured metadata, dependencies, and requirement tra
217217
- `workflow.todo.streamPlan` — Stream plan generation events
218218
- `workflow.todo.streamImplement` — Stream implementation execution
219219

220-
**Example: Create TODO**
220+
### Example: Create TODO
221221

222222
```yaml
223223
type: request
@@ -276,7 +276,7 @@ Requirements management for functional (FR), technical (TR), and test (TEST) req
276276
- `workflow.requirements.generateDocument` — Generate formatted document
277277
- `workflow.requirements.ingestDocument` — Ingest external document
278278

279-
**Example: List Functional Requirements**
279+
### Example: List Functional Requirements
280280

281281
```yaml
282282
type: request
@@ -334,7 +334,7 @@ Generic passthrough to all `McpServerClient` sub-clients. Enables dynamic invoca
334334
- `client.configuration.*` — Admin configuration
335335
- `client.tools.*` — Tool registry operations
336336

337-
**Example: Context Search**
337+
### Example: Context Search
338338

339339
```yaml
340340
type: request

tests/McpServer.McpAgent.Tests/McpHostedAgentAdapterTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ private static (McpHostedAgent HostedAgent, RecordingMcpHttpMessageHandler Handl
455455
});
456456
var identifiers = new McpSessionIdentifierFactory(options, timeProvider);
457457
var sessionLog = new McpServer.McpAgent.SessionLog.SessionLogWorkflow(client, identifiers, timeProvider);
458-
var todo = new TodoWorkflow(client);
458+
var todo = new McpServer.McpAgent.Todo.TodoWorkflow(client);
459459
var requirements = new RequirementsWorkflow(client.Requirements);
460460
var clientPassthrough = new GenericClientPassthrough(client);
461461
var replSessionLogAdapter = new SessionLogClientAdapter(client.SessionLog);

0 commit comments

Comments
 (0)