close-story

Redirects the close-story command to the aiox-close-story skill workflow.

3.1k|952|Updated Dec 9, 2025
One-click install
npx skills add https://github.com/SynkraAI/aios-core --skill close-story
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: close-story
Source: https://github.com/SynkraAI/aios-core/tree/main/.grok/skills/close-story
Command: npx skills add https://github.com/SynkraAI/aios-core --skill close-story

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

When working in the AIOX framework with Grok, users may type the shorter /close-story command instead of the full /aiox-close-story name. This alias ensures the short command resolves to the correct story-closing workflow without duplicating logic.

Core Features & Use Cases

  • Command Alias: Maps the short /close-story invocation directly to the canonical /aiox-close-story skill.
  • Single Source of Truth: Delegates all behavior to the aliased skill file, preventing divergent or duplicated workflows.
  • Self-Healing Fallback: Instructs regeneration via npm run sync:skills:grok if the target skill file is missing.
  • Use Case: A developer finishing a sprint story in Grok types /close-story and the full AIOX story-closing procedure runs exactly as defined in aiox-close-story.

Quick Start

Type /close-story in your Grok session to run the AIOX story-closing workflow.

Frequently Asked Questions about close-story

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I close a story in the AIOX framework with Grok?

Run /close-story in your Grok session. This alias loads and follows the canonical aiox-close-story skill, which contains the full story-closing procedure defined by the AIOX framework.

What is the difference between close-story and aiox-close-story?

close-story is only a short alias; aiox-close-story is the actual skill containing the workflow. The alias performs no logic itself and always delegates to the aliased skill file as the source of truth.

What happens if the aiox-close-story skill file is missing?

The alias instructs you to regenerate it by running npm run sync:skills:grok. This command resynchronizes the Grok skills directory so the canonical skill file is restored.

Can I customize the close-story workflow by editing the alias?

No. The alias explicitly forbids inventing a parallel workflow. Any customization must be made in the aiox-close-story skill, which remains the single source of truth for the closing procedure.