• v0.1.0 9c53349b6a

    v0.1.0 - Initial Release
    Some checks failed
    CI / test (push) Failing after 18s
    CI / lint (push) Failing after 7s
    Stable

    7000pctAUTO released this 2026-03-22 11:22:56 +00:00 | 124 commits to main since this release

    Initial release of Snip - Local-First Code Snippet Manager

    Features

    • CRUD operations for code snippets
    • FTS5 full-text search
    • Tag-based organization
    • Collections for grouping snippets
    • Syntax highlighting with Pygments
    • JSON import/export
    • AES encryption for sensitive snippets
    • P2P sync via mDNS/Bonjour

    Installation

    pip install -e .
    

    Quick Start

    snip init
    snip add --title "Hello" --code 'print("Hello!")' --language python
    snip list
    snip search hello
    
    Downloads