Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.0"
".": "1.0.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Releases are automated with [release-please](https://github.com/googleapis/release-please);
entries are generated from [Conventional Commit](https://www.conventionalcommits.org) messages.

## [1.0.1](https://github.com/LaunchPadLab/ai-bank/compare/v1.0.0...v1.0.1) (2026-06-30)


### Documentation

* add Claude Code system prompt customization field guide ([#8](https://github.com/LaunchPadLab/ai-bank/issues/8)) ([0f69e1d](https://github.com/LaunchPadLab/ai-bank/commit/0f69e1d93eb3b882df5e174b8af06a37feaf0fc5))
* add Claude vs OpenAI model/effort selection guide ([#10](https://github.com/LaunchPadLab/ai-bank/issues/10)) ([e99aa4a](https://github.com/LaunchPadLab/ai-bank/commit/e99aa4affbbf75744b58f75cd6fccf563ad438ef))

## [1.0.0] - 2026-05-27

Initial public release of the **ai-bank** catalog and tooling.
Expand Down
16 changes: 13 additions & 3 deletions plugins/ai-bank/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,22 @@
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "ai-bank",
"displayName": "AI-Bank Catalog",
"version": "1.0.0",
"version": "1.0.1",
"description": "Read-only MCP access to the ai-bank catalog of Rails/Hotwire skills, agents, and rules. Search and fetch assets on demand; ask which rules apply to a file before editing.",
"author": { "name": "LaunchPadLab" },
"author": {
"name": "LaunchPadLab"
},
"homepage": "https://github.com/LaunchPadLab/ai-bank",
"repository": "https://github.com/LaunchPadLab/ai-bank",
"keywords": ["rails", "hotwire", "mcp", "skills", "agents", "rules", "catalog"],
"keywords": [
"rails",
"hotwire",
"mcp",
"skills",
"agents",
"rules",
"catalog"
],
"userConfig": {
"cf_access_client_id": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "aibank-mcp"
version = "1.0.0" # x-release-please-version
version = "1.0.1" # x-release-please-version
description = "MCP server exposing the ai-bank Skills/Agents/Rules knowledge base (read-only)."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion server/src/aibank_mcp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
instead of copying files between projects.
"""

__version__ = "1.0.0" # x-release-please-version
__version__ = "1.0.1" # x-release-please-version

__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion server/src/aibank_web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

from __future__ import annotations

__version__ = "1.0.0" # x-release-please-version
__version__ = "1.0.1" # x-release-please-version