SnippetKit

Add Command

Install snippets into your project using the add command.

add

Use the add command to install a snippet into your project. When run, it fetches the snippet’s code from the SnippetKit registry and writes it to a file.

The above doesn't seem to work and is throwing an error; make it very neat and fully proper MDX.

snippetkit add <snippet_id> [flags]

Example

snippetkit add Z6sBKkjT

Output Example:

📂 Default install path: `components/ui/spinner.tsx`
Would you like to change the path? (y/N) n
 Snippet installed successfully at `components/ui/spinner.tsx`

This command downloads the snippet’s code and places it in the default path or a path specified by flags.

Flags

FlagDescriptionExample
--pathSpecify a custom install path.snippetkit add Z6sBKkjT --path src/components/
--forceOverwrite the file if it already exists.snippetkit add Z6sBKkjT --force
--silentSuppress any output (useful for scripting or CI/CD pipelines).snippetkit add Z6sBKkjT --silent

Usage Details

  • Snippet ID: You can obtain this from the search command or from snippet references in your documentation.
  • Confirmation Prompt: By default, SnippetKit prompts you if it detects an existing path or if you want to modify the path.
  • Silent Install: Use --silent for fully automated installs in build scripts.

Example Use Cases

  1. Installing into a custom folder:
    snippetkit add 8YsQ -p ./src/utils
  2. Overwriting existing code:
    snippetkit add S9DkX --force
  3. No terminal interaction:
    snippetkit add X4ZsK --silent

On this page