Artifactr: Local-first CLI tool for managing AI coding agent artifacts

Artifactr is a cross-platform CLI tool for managing LLM "artifacts"—files or folders intended for use with AI coding tools like skills, commands, and agent definitions. Built over two weeks using claude-code and openspec, it's MIT-licensed and available on PyPI via pip or pipx.
Key Features
The tool addresses manual management of AI artifacts in terminal environments, avoiding token waste on simple file operations. Key features include:
- Local-first storage: No network connections except for manual updates. Files are stored in portable "vault" formats inspired by Obsidian and Logseq.
- Export capabilities: Export individual artifacts as zip archives or entire vaults for sharing.
- Automatic syncing: Use
linkor--linkto symlink vault contents to project directories, keeping artifacts synced automatically. - Import management
- Git-aware functionality: Default behavior adds imported files to
.git/info/excludeto prevent accidental commits and conceal AI usage indicators from public repos. Disable with--no-exclude.- Custom tool support: Add support for any coding agent via YAML configuration. Configs can be exported with vaults.
- Discovery commands: Use
art spelunkto recursively discover artifacts in directories, thenart storeto add them to vaults.- CRUD operations: Create, remove, update, and delete artifacts easily.
- Git-aware functionality: Default behavior adds imported files to
Artifactr natively supports claude-code, opencode, and codex, with extensibility for other agents. It's designed for terminal power-users who want to manage AI-assisted workflows without file sprawl or privacy concerns.
📖 Read the full source: r/ClaudeAI
👀 See Also

Contextium: Open-Source Persistent Context Framework for Claude Code
Contextium is a structured git repo framework that provides persistent context for Claude Code sessions, using a CLAUDE.md file as a context router to lazy-load relevant markdown files. The open-source version includes a template with 6 sample apps and 27 integration docs.

Developer Creates Practical Claude Skills for Kotlin Multiplatform Projects
A developer built a public repository of Claude skills specifically for Kotlin Multiplatform work after finding existing skills too generic, opinionated, or thin. The skills cover architecture reviews, feature implementation, modularization, Compose Multiplatform UI, navigation, platform bridges, deep links, adaptive UI, testing, and build governance.

Claude Code Undocumented Features: Hooks, Memory, YOLO Classifier & More
The Claude Code source reveals hidden configs: YOLO Classifier for auto-permission, hooks that rewrite commands, persistent agent memory, auto-mode rules in plain English, and dream loops.

Building CLIs for AI Agents: Design Principles from Google's gws CLI
Google's gws CLI demonstrates how to design command-line interfaces specifically for AI agents, prioritizing raw JSON payloads over human-friendly flags and implementing safety rails against hallucinations.