Skip to content

Releases: Smart-AI-Memory/attune-docs

v0.1.3 — Phase 1 ship: two-marketplace help platform live

15 Apr 00:42
cc54549

Choose a tag to compare

Two-marketplace help platform — Phase 1

This release marks the public availability of the attune-docs
marketplace, which separates the help platform (attune-help +
attune-author) from the developer-workflow plugin (attune-ai).

What's in this marketplace

Plugin Version Purpose
attune-help 0.3.1 Lightweight runtime reader for .help/ templates. Progressive depth (concept → task → reference). No AI keys required.
attune-author 0.2.0 AI-powered authoring companion. Generates, maintains, and validates .help/ templates with staleness detection.

Install

I want to read help templates (no AI keys needed):

/plugin marketplace add Smart-AI-Memory/attune-docs
/plugin install attune-help@attune-docs

I want to author and ship help content (needs ANTHROPIC_API_KEY):

/plugin marketplace add Smart-AI-Memory/attune-docs
/plugin install attune-help@attune-docs
/plugin install attune-author@attune-docs

Migrating from the bundled attune-ai marketplace

If you previously installed attune-help or attune-author via the
attune-ai marketplace:

/plugin marketplace add Smart-AI-Memory/attune-docs
/plugin uninstall attune-help@attune-ai
/plugin uninstall attune-author@attune-ai
/plugin install attune-help@attune-docs
/plugin install attune-author@attune-docs

Nothing changes for users of the attune-ai plugin itself — the
developer-workflow plugin continues to ship from
Smart-AI-Memory/attune-ai.

Why split

  • attune-help is lookup-only and works without an API key. It
    shouldn't drag in the full attune-ai AI stack.
  • attune-author has a distinct audience (knowledge-base
    authors) from developer-workflow users.
  • Independent release cadence — each plugin can ship on its
    own schedule from its standalone repo.
  • Smaller, focused plugins load faster and are easier to
    reason about.

Phase 1 changes vs original plan

Originally Phase 1 was going to use Claude Code's git-subdir
source type to reference plugin code that physically lived in
the attune-ai repo. We discovered git-subdir is not yet
supported by shipping Claude Code v2.1.68/v2.1.78
(anthropics/claude-code#33172), so this repo physically vendors
the plugin directories with relative-path sources. Functional
parity; cleanup will revisit when git-subdir lands.

Acknowledgements

Built with Claude Code.