rename .story_kit directory to .storkit and update all references
Renames the config directory and updates 514 references across 42 Rust source files, plus CLAUDE.md, .gitignore, Makefile, script/release, and .mcp.json files. All 1205 tests pass. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -18,7 +18,7 @@ pub struct OnboardingStatus {
|
||||
pub needs_stack: bool,
|
||||
/// True when `script/test` still contains the scaffold placeholder.
|
||||
pub needs_test_script: bool,
|
||||
/// True when `.story_kit/project.toml` is missing or has no
|
||||
/// True when `.storkit/project.toml` is missing or has no
|
||||
/// `[[component]]` entries.
|
||||
pub needs_project_toml: bool,
|
||||
}
|
||||
@@ -33,7 +33,7 @@ impl OnboardingStatus {
|
||||
/// Inspect the project at `project_root` and determine which onboarding
|
||||
/// steps are still required.
|
||||
pub fn check_onboarding_status(project_root: &Path) -> OnboardingStatus {
|
||||
let story_kit = project_root.join(".story_kit");
|
||||
let story_kit = project_root.join(".storkit");
|
||||
|
||||
OnboardingStatus {
|
||||
needs_context: is_template_or_missing(
|
||||
@@ -79,7 +79,7 @@ mod tests {
|
||||
|
||||
fn setup_project(dir: &TempDir) -> std::path::PathBuf {
|
||||
let root = dir.path().to_path_buf();
|
||||
let sk = root.join(".story_kit");
|
||||
let sk = root.join(".storkit");
|
||||
fs::create_dir_all(sk.join("specs").join("tech")).unwrap();
|
||||
fs::create_dir_all(root.join("script")).unwrap();
|
||||
root
|
||||
@@ -106,12 +106,12 @@ mod tests {
|
||||
|
||||
// Write content that includes the scaffold sentinel
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/00_CONTEXT.md"),
|
||||
root.join(".storkit/specs/00_CONTEXT.md"),
|
||||
"<!-- story-kit:scaffold-template -->\n# Project Context\nPlaceholder...",
|
||||
)
|
||||
.unwrap();
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/tech/STACK.md"),
|
||||
root.join(".storkit/specs/tech/STACK.md"),
|
||||
"<!-- story-kit:scaffold-template -->\n# Tech Stack\nPlaceholder...",
|
||||
)
|
||||
.unwrap();
|
||||
@@ -130,12 +130,12 @@ mod tests {
|
||||
// Real project content that happens to mention "Agentic AI Code Assistant"
|
||||
// but does NOT contain the scaffold sentinel — should NOT trigger onboarding.
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/00_CONTEXT.md"),
|
||||
root.join(".storkit/specs/00_CONTEXT.md"),
|
||||
"# Project Context\nTo build a standalone Agentic AI Code Assistant application.",
|
||||
)
|
||||
.unwrap();
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/tech/STACK.md"),
|
||||
root.join(".storkit/specs/tech/STACK.md"),
|
||||
"# Tech Stack\nThis is an Agentic Code Assistant binary.",
|
||||
)
|
||||
.unwrap();
|
||||
@@ -152,12 +152,12 @@ mod tests {
|
||||
let root = setup_project(&dir);
|
||||
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/00_CONTEXT.md"),
|
||||
root.join(".storkit/specs/00_CONTEXT.md"),
|
||||
"# My Project\n\nThis is an e-commerce platform for selling widgets.",
|
||||
)
|
||||
.unwrap();
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/tech/STACK.md"),
|
||||
root.join(".storkit/specs/tech/STACK.md"),
|
||||
"# Tech Stack\n\n## Backend: Python + FastAPI\n## Frontend: React + TypeScript",
|
||||
)
|
||||
.unwrap();
|
||||
@@ -173,8 +173,8 @@ mod tests {
|
||||
let dir = TempDir::new().unwrap();
|
||||
let root = setup_project(&dir);
|
||||
|
||||
fs::write(root.join(".story_kit/specs/00_CONTEXT.md"), " \n").unwrap();
|
||||
fs::write(root.join(".story_kit/specs/tech/STACK.md"), "").unwrap();
|
||||
fs::write(root.join(".storkit/specs/00_CONTEXT.md"), " \n").unwrap();
|
||||
fs::write(root.join(".storkit/specs/tech/STACK.md"), "").unwrap();
|
||||
|
||||
let status = check_onboarding_status(&root);
|
||||
assert!(status.needs_context);
|
||||
@@ -230,7 +230,7 @@ mod tests {
|
||||
let root = setup_project(&dir);
|
||||
|
||||
fs::write(
|
||||
root.join(".story_kit/project.toml"),
|
||||
root.join(".storkit/project.toml"),
|
||||
"# empty config\n",
|
||||
)
|
||||
.unwrap();
|
||||
@@ -245,7 +245,7 @@ mod tests {
|
||||
let root = setup_project(&dir);
|
||||
|
||||
fs::write(
|
||||
root.join(".story_kit/project.toml"),
|
||||
root.join(".storkit/project.toml"),
|
||||
"[[component]]\nname = \"app\"\npath = \".\"\nsetup = [\"cargo check\"]\n",
|
||||
)
|
||||
.unwrap();
|
||||
@@ -263,12 +263,12 @@ mod tests {
|
||||
|
||||
// Write real content for the required onboarding files
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/00_CONTEXT.md"),
|
||||
root.join(".storkit/specs/00_CONTEXT.md"),
|
||||
"# My Project\n\nReal project context.",
|
||||
)
|
||||
.unwrap();
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/tech/STACK.md"),
|
||||
root.join(".storkit/specs/tech/STACK.md"),
|
||||
"# My Stack\n\nReal stack content.",
|
||||
)
|
||||
.unwrap();
|
||||
@@ -300,13 +300,13 @@ mod tests {
|
||||
|
||||
// Context still has sentinel
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/00_CONTEXT.md"),
|
||||
root.join(".storkit/specs/00_CONTEXT.md"),
|
||||
"<!-- story-kit:scaffold-template -->\n# Project Context\nPlaceholder...",
|
||||
)
|
||||
.unwrap();
|
||||
// Stack is customised (no sentinel)
|
||||
fs::write(
|
||||
root.join(".story_kit/specs/tech/STACK.md"),
|
||||
root.join(".storkit/specs/tech/STACK.md"),
|
||||
"# My Stack\nRuby on Rails + PostgreSQL",
|
||||
)
|
||||
.unwrap();
|
||||
|
||||
Reference in New Issue
Block a user