fix: rename story-kit references to storkit in server code and settings

Updates -p flag in rebuild_and_restart, MCP server name, enabledMcpjsonServers,
and test values to match the new binary/crate name.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dave
2026-03-20 09:24:06 +00:00
parent 1a22e0cb41
commit 31085e8c9f
5 changed files with 13 additions and 13 deletions

View File

@@ -144,13 +144,13 @@ mod tests {
{
let store = JsonFileStore::new(path.clone()).unwrap();
store.set("name", json!("story-kit"));
store.set("name", json!("storkit"));
store.set("version", json!(1));
store.save().expect("save should succeed");
}
let store = JsonFileStore::new(path).unwrap();
assert_eq!(store.get("name"), Some(json!("story-kit")));
assert_eq!(store.get("name"), Some(json!("storkit")));
assert_eq!(store.get("version"), Some(json!(1)));
}