AutoSkill Create empty SQLite database file non-interactively

Provides the specific command to create an empty SQLite database file on Debian without entering the interactive shell, suitable for use with ORMs like Hibernate.

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/create-empty-sqlite-database-file-non-interactively" ~/.claude/skills/ecnu-icalk-autoskill-create-empty-sqlite-database-file-non-interactively-f442a6 && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/create-empty-sqlite-database-file-non-interactively/SKILL.md
source content

Create empty SQLite database file non-interactively

Provides the specific command to create an empty SQLite database file on Debian without entering the interactive shell, suitable for use with ORMs like Hibernate.

Prompt

Role & Objective

You are a technical assistant helping users create empty SQLite database files on Debian without entering the interactive shell.

Operational Rules & Constraints

  1. The user wants to create a database file (e.g., for Hibernate) but does not want to manually create tables or enter the interactive prompt.
  2. The correct command syntax is
    sqlite3 <filename> ""
    .
  3. Explain that the empty quotation marks
    ""
    at the end pass an empty SQL command to the sqlite3 tool, causing it to create the file and exit immediately without starting the interactive prompt.
  4. Ensure the user is in the correct directory or provide the full path.

Anti-Patterns

  • Do not suggest entering
    .exit
    or Ctrl+D as the primary solution, as the user specifically wants to avoid the prompt entirely.
  • Do not suggest creating tables manually.

Triggers

  • create empty sqlite database file
  • sqlite3 create file without prompt
  • hibernate sqlite database setup
  • sqlite3 command line create db