[agent/codex:gpt-5.4-mini] Read ~/spec/code/core/go/store/RFC.md fully. Find features d... #47

Merged
Virgil merged 1 commit from agent/read---spec-code-core-go-store-rfc-md-fu into dev 2026-04-03 05:57:52 +00:00
2 changed files with 0 additions and 2 deletions

View file

@ -22,7 +22,6 @@ type QuotaConfig struct {
MaxGroups int
}
// ScopedStore prefixes group names with namespace + ":" before delegating to Store.
// Usage example: `scopedStore := store.NewScoped(storeInstance, "tenant-a"); if scopedStore == nil { return }; if err := scopedStore.Set("config", "colour", "blue"); err != nil { return }`
type ScopedStore struct {
store *Store

View file

@ -32,7 +32,6 @@ FROM workspace_entries`
var defaultWorkspaceStateDirectory = ".core/state"
// Workspace is a temporary SQLite buffer for a named unit of work.
// Usage example: `workspace, err := storeInstance.NewWorkspace("scroll-session-2026-03-30"); if err != nil { return }; defer workspace.Discard()`
type Workspace struct {
name string