Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ gh project item-list 2 --owner traverse-framework --format json --limit 300 \
| `llm-mcp-cursor-live-smoke` | **Done** (#240) | Cursor MCP Mode A stdio evidence |
| `llm-mcp-claude-live-smoke` | **Done** (#241) | Claude Desktop/Code MCP Mode A evidence |
| `kit-runner-persona-docs` | **Done** (#273) | Persona runbook + embedded onboarding |
| `new-app-author-e2e` | **In Progress** | CLI `app new` → App-Refs layout + Web host rewrite |
| `new-app-author-e2e` | **Done** (#275) | CLI `app new` → App-Refs layout + Web host rewrite |
| `fix-nightly-native-macos-windows` | **In Progress** | Swift 6 Sendable mappers + WinUI test compile of PresentationMapper |
| `llm-mcp-mode-a-spec119-scaffold` | **Done** (#271) | Spec 119 consumer scaffold (fail-closed); live kit execute stays `llm-mcp-traverse-starter-catalog` |
| `llm-mcp-traverse-starter-catalog` | **Blocked** | Spec 119 Approved; wait on Mode A `traverse-mcp` implement. No kit content groups in v1 (FR-007) |
| `loop-wf1-registry-deps` | **Done** (#263) | Digest inventory in `docs/loop-registry-deps.md` |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public enum PresentationState: String, Equatable, Sendable {
case error
}

public struct PresentationSnapshot: Equatable, Sendable {
public struct PresentationSnapshot: Equatable, @unchecked Sendable {
public let state: PresentationState
public let errorMessage: String?
public let output: Any?
Expand All @@ -31,7 +31,7 @@ public enum CapabilityPhase: String, Equatable, Sendable {
case result
}

public struct CapabilityProgressStep: Equatable, Sendable {
public struct CapabilityProgressStep: Equatable, @unchecked Sendable {
public let capabilityId: String
public let phase: CapabilityPhase
public let sequence: UInt64
Expand Down Expand Up @@ -61,7 +61,7 @@ public struct CapabilityProgressStep: Equatable, Sendable {
}

/// Minimal embedder event fields required by the mapper.
public struct EmbedderEventLike: Equatable, Sendable {
public struct EmbedderEventLike: Equatable, @unchecked Sendable {
public let eventType: String
public let sequence: UInt64
public let data: [String: Any]
Expand Down
6 changes: 3 additions & 3 deletions apps/loop/LoopCore/Sources/LoopCore/PresentationMapper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public enum PresentationState: String, Equatable, Sendable {
case error
}

public struct PresentationSnapshot: Equatable, Sendable {
public struct PresentationSnapshot: Equatable, @unchecked Sendable {
public let state: PresentationState
public let errorMessage: String?
public let output: Any?
Expand All @@ -31,7 +31,7 @@ public enum CapabilityPhase: String, Equatable, Sendable {
case result
}

public struct CapabilityProgressStep: Equatable, Sendable {
public struct CapabilityProgressStep: Equatable, @unchecked Sendable {
public let capabilityId: String
public let phase: CapabilityPhase
public let sequence: UInt64
Expand Down Expand Up @@ -61,7 +61,7 @@ public struct CapabilityProgressStep: Equatable, Sendable {
}

/// Minimal embedder event fields required by the mapper.
public struct EmbedderEventLike: Equatable, Sendable {
public struct EmbedderEventLike: Equatable, @unchecked Sendable {
public let eventType: String
public let sequence: UInt64
public let data: [String: Any]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public enum PresentationState: String, Equatable, Sendable {
case error
}

public struct PresentationSnapshot: Equatable, Sendable {
public struct PresentationSnapshot: Equatable, @unchecked Sendable {
public let state: PresentationState
public let errorMessage: String?
public let output: Any?
Expand All @@ -31,7 +31,7 @@ public enum CapabilityPhase: String, Equatable, Sendable {
case result
}

public struct CapabilityProgressStep: Equatable, Sendable {
public struct CapabilityProgressStep: Equatable, @unchecked Sendable {
public let capabilityId: String
public let phase: CapabilityPhase
public let sequence: UInt64
Expand Down Expand Up @@ -61,7 +61,7 @@ public struct CapabilityProgressStep: Equatable, Sendable {
}

/// Minimal embedder event fields required by the mapper.
public struct EmbedderEventLike: Equatable, Sendable {
public struct EmbedderEventLike: Equatable, @unchecked Sendable {
public let eventType: String
public let sequence: UInt64
public let data: [String: Any]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public enum PresentationState: String, Equatable, Sendable {
case error
}

public struct PresentationSnapshot: Equatable, Sendable {
public struct PresentationSnapshot: Equatable, @unchecked Sendable {
public let state: PresentationState
public let errorMessage: String?
public let output: Any?
Expand All @@ -31,7 +31,7 @@ public enum CapabilityPhase: String, Equatable, Sendable {
case result
}

public struct CapabilityProgressStep: Equatable, Sendable {
public struct CapabilityProgressStep: Equatable, @unchecked Sendable {
public let capabilityId: String
public let phase: CapabilityPhase
public let sequence: UInt64
Expand Down Expand Up @@ -61,7 +61,7 @@ public struct CapabilityProgressStep: Equatable, Sendable {
}

/// Minimal embedder event fields required by the mapper.
public struct EmbedderEventLike: Equatable, Sendable {
public struct EmbedderEventLike: Equatable, @unchecked Sendable {
public let eventType: String
public let sequence: UInt64
public let data: [String: Any]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<Compile Include="..\TraverseStarter\AppConstants.cs" Link="AppConstants.cs" />
<Compile Include="..\TraverseStarter\Models.cs" Link="Models.cs" />
<Compile Include="..\TraverseStarter\ISettingsRepository.cs" Link="ISettingsRepository.cs" />
<Compile Include="..\TraverseStarter\PresentationMapper.cs" Link="PresentationMapper.cs" />
<Compile Include="..\TraverseStarter\EmbeddedHost.cs" Link="EmbeddedHost.cs" />
<Compile Include="..\TraverseStarter\ExecutionViewModel.cs" Link="ExecutionViewModel.cs" />
</ItemGroup>
Expand Down
Loading