skills/speckit-skills/speckit-baseline/SKILL.md
Generate a technology-agnostic feature specification by analyzing existing source code, extracting user stories, functional requirements, and acceptance criteria from code patterns. Use when the user needs to document an existing or legacy codebase, create a spec before refactoring, or reverse-engineer requirements from source files.
npx skillsauth add partme-ai/full-stack-skills speckit-baselineInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
.specify/ scripts and templates.If the target is missing or ambiguous, ask a focused question before continuing.
Generate a technology-agnostic spec for existing code, then create the feature branch/spec file using the standard Spec Kit templates.
Parse target input: Identify files, directories, or patterns to analyze.
Discover and read source files:
Analyze code structure:
Generate a short name (2-4 words) from the analyzed code:
Create the feature branch and spec file:
.specify/scripts/bash/create-new-feature.sh --json with the calculated number and short name.Load the spec template from .specify/templates/spec-template.md.
Draft the specification using the template structure:
Abstract implementation details:
Create spec quality checklist at FEATURE_DIR/checklists/requirements.md.
Report completion with:
specs/<feature>/spec.mdspecs/<feature>/checklists/requirements.md[NEEDS CLARIFICATION] for ambiguous code sections (max 3).Code Pattern → Spec Requirement:
if (user.role === 'admin') → "System MUST restrict action to administrator users"password.length >= 8 → "Passwords MUST be at least 8 characters"cache.set(key, value, 3600) → "System MUST cache results for improved performance"try { ... } catch (e) { notify(e) } → "System MUST notify users when errors occur"Code Pattern → User Story:
After generating spec.md:
development
Provides per-component and per-API examples with cross-platform compatibility details for uni-app, covering built-in components, uni-ui components, and APIs (network, storage, device, UI, navigation, media). Use when the user needs official uni-app components or APIs, wants per-component examples with doc links, or needs platform compatibility checks.
tools
Creates new uni-app projects via the official CLI or HBuilderX with Vue 2/Vue 3 template selection, manifest.json and pages.json configuration, and directory structure setup. Use when the user wants to scaffold a new uni-app project, initialize project files with a single command, or set up the development environment.
tools
Browses, installs, configures, and manages plugins from the uni-app plugin market (ext.dcloud.net.cn) including component plugins, API plugins, and template plugins with dependency handling. Use when the user needs to find and install uni-app plugins, configure plugin settings, manage plugin dependencies, or integrate third-party components.
tools
Develops native Android and iOS plugins for uni-app including module creation, JavaScript-to-native communication, and plugin packaging for distribution. Use when the user needs to build custom native modules, extend uni-app with native capabilities (camera, Bluetooth, sensors), or create publishable native plugins.