Metadata-Version: 2.4
Name: kiro-settings-manager
Version: 0.2.0
Summary: CLI tool for managing Kiro IDE configuration bundles
Author: Tom Stanley
License: Apache-2.0
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: textual>=0.80.0
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: pytest-asyncio; extra == "dev"
Requires-Dist: hypothesis; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: flake8-pyproject; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# Kiro Settings Manager (`ksm`)

A CLI tool for managing [Kiro IDE](https://kiro.dev) configuration bundles. `ksm` lets you install, remove, sync, and organise bundles of skills, steering files, hooks, and agents across local (workspace) and global (`~/.kiro/`) scopes.

## Table of Contents

- [Features](#features)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Quick Start](#quick-start)
- [Usage](#usage)
  - [ksm add](#ksm-add)
  - [ksm ls](#ksm-ls)
  - [ksm sync](#ksm-sync)
  - [ksm rm](#ksm-rm)
  - [ksm add-registry](#ksm-add-registry)
- [Config Bundles](#config-bundles)
  - [Built-in Bundles](#built-in-bundles)
  - [Authoring a Bundle](#authoring-a-bundle)
- [Architecture](#architecture)
- [Development](#development)

## Features

- Install configuration bundles locally (`.kiro/`) or globally (`~/.kiro/`)
- Interactive terminal selector for browsing and choosing bundles
- Dot-notation targeting to install a single item from a bundle (e.g. `git_and_github.skills.github-pr`)
- Subdirectory filters to install only skills, steering, hooks, or agents
- Registry system with a built-in default registry and support for adding external git registries
- Ephemeral installs from any git URL via `--from`
- Sync installed bundles to pull the latest changes from their source registries
- Persistent manifest tracking what is installed, where, and when

## Prerequisites

- Python 3.10 or later

## Installation

### From PyPI (recommended)

```bash
pip install kiro-settings-manager
```

Once installed, the `ksm` command is available in your shell. If you prefer an isolated install that won't affect your global Python environment, use [pipx](https://pipx.pypa.io/):

```bash
pipx install kiro-settings-manager
```

### From GitHub

```bash
# Latest from main
pip install git+https://github.com/staneslevski/Kiro-Settings-Manager.git

# Specific version tag
pip install git+https://github.com/staneslevski/Kiro-Settings-Manager.git@v0.1.0

# Specific branch
pip install git+https://github.com/staneslevski/Kiro-Settings-Manager.git@branch-name
```

### From source (for development)

```bash
git clone https://github.com/staneslevski/Kiro-Settings-Manager.git
cd Kiro-Settings-Manager

python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
```

See the [Development](#development) section for the full dev workflow.

## Quick Start

```bash
# Browse available bundles interactively
ksm add --display

# Install a bundle globally
ksm add python_dev -g

# Install a single skill from a bundle
ksm add git_and_github.skills.github-pr -g

# List installed bundles
ksm ls

# Sync all installed bundles to latest
ksm sync --all --yes

# Remove a bundle
ksm rm python_dev -g
```

## Usage

### ksm add

Install a bundle or a specific item from a bundle.

```bash
# Install a full bundle locally (into .kiro/)
ksm add python_dev

# Install globally (into ~/.kiro/)
ksm add python_dev -g

# Interactive selector
ksm add --display

# Dot notation — install one item
ksm add git_and_github.skills.github-pr -g

# Install only steering files from a bundle
ksm add project_foundations --steering-only -g

# Install from an external git repo (ephemeral, not registered)
ksm add my-bundle --from https://github.com/org/repo.git -g
```

Subdirectory filter flags: `--skills-only`, `--steering-only`, `--hooks-only`, `--agents-only`. These are mutually exclusive with dot notation.

### ksm ls

List all installed bundles tracked in the manifest (`~/.kiro/ksm/manifest.json`). Output is grouped by scope — local (workspace `.kiro/`) bundles first, then global (`~/.kiro/`) bundles. Each entry shows the bundle name, source registry, and a relative timestamp of the last install or sync.

```bash
# List all installed bundles
ksm ls

# Include the file paths installed by each bundle
ksm ls -v

# Show only workspace-level bundles
ksm ls --scope local

# Show only user-level bundles
ksm ls --scope global

# Machine-readable JSON output (pipe to jq, etc.)
ksm ls --format json
```

Example output:

```
Local bundles:
  git_and_github  (default)  2 days ago

Global bundles:
  python_dev      (default)  5 minutes ago
  aws             (default)  1 week ago
```

With `-v` (verbose), installed file paths appear under each bundle:

```
Local bundles:
  git_and_github  (default)  2 days ago
    steering/git-branching.md
    skills/github-pr/SKILL.md
```

If no bundles are installed, a message is printed to stderr and the command exits 0.

### ksm sync

Re-install bundles from their source registries to pick up changes. For git-based registries, `sync` pulls the latest commits before copying.

```bash
# Sync specific bundles
ksm sync python_dev

# Sync everything
ksm sync --all

# Skip the confirmation prompt
ksm sync --all --yes
```

### ksm rm

Remove an installed bundle and its files.

```bash
# Remove a local bundle
ksm rm python_dev

# Remove a global bundle
ksm rm python_dev -g

# Interactive removal selector
ksm rm --display
```

### ksm add-registry

Register an external git repository as a bundle source. The repo is cloned into `~/.kiro/ksm/cache/` and must contain at least one valid config bundle.

```bash
ksm add-registry https://github.com/org/shared-bundles.git
```

After registering, bundles from that registry appear in `ksm add --display` and can be installed by name.

## Config Bundles

A config bundle is a directory containing one or more of these subdirectories:

```
my-bundle/
├── skills/       # Kiro skill definitions (SKILL.md + scripts)
├── steering/     # Steering markdown files
├── hooks/        # Hook JSON files
└── agents/       # Custom agent definitions
```

A bundle is valid if it contains at least one of these four subdirectories.

### Built-in Bundles

| Bundle | Contents | Description |
|--------|----------|-------------|
| `aws` | skills, steering | AWS-focused skills and steering rules |
| `example_conf_bund` | agents, hooks, skills, steering | Example bundle demonstrating all subdirectory types |
| `git_and_github` | agents, skills, steering | Git branching rules, GitHub PR skill, README writer agent |
| `kiro_skill_authoring` | skills | Skill for authoring Kiro skills |
| `project_foundations` | skills, steering | Project structure and scaffolding guidance |
| `python_dev` | steering | Python development standards |

### Authoring a Bundle

1. Create a directory under `config_bundles/` with your bundle name.
2. Add one or more subdirectories: `skills/`, `steering/`, `hooks/`, `agents/`.
3. Populate them with the appropriate files (e.g. `SKILL.md` for skills, `.md` for steering, `.json` for hooks).
4. The bundle is automatically discovered by `ksm` through the default registry.

## Architecture

```
src/ksm/
├── cli.py              # Argument parsing and command dispatch
├── commands/
│   ├── add.py          # ksm add
│   ├── add_registry.py # ksm add-registry
│   ├── ls.py           # ksm ls
│   ├── rm.py           # ksm rm
│   └── sync.py         # ksm sync
├── scanner.py          # Discovers valid bundles in a registry directory
├── resolver.py         # Finds a bundle by name across all registries
├── installer.py        # Copies bundle files to target .kiro/ directory
├── copier.py           # Low-level file/tree copy operations
├── remover.py          # Deletes installed bundle files
├── manifest.py         # Tracks installed bundles (manifest.json)
├── registry.py         # Manages registered bundle sources (registries.json)
├── persistence.py      # JSON I/O and path constants
├── selector.py         # Interactive terminal bundle selector
├── dot_notation.py     # Parses bundle.subdir.item selectors
├── git_ops.py          # Git clone/pull operations
└── errors.py           # Custom exception types
```

State is stored in `~/.kiro/ksm/`:
- `manifest.json` — records every installed bundle, its scope, source, and file list
- `registries.json` — lists all registered bundle sources (default + any added git registries)
- `cache/` — cloned git registries

## Development

```bash
# Create venv and install
python -m venv .venv
source .venv/bin/activate && pip install -e ".[dev]"

# Run tests
source .venv/bin/activate && pytest

# Run tests with coverage
source .venv/bin/activate && pytest --cov=ksm tests/

# Format
source .venv/bin/activate && black src/ tests/

# Lint
source .venv/bin/activate && flake8 src/ tests/

# Type check
source .venv/bin/activate && mypy src/ tests/

# Run thorough property tests (CI mode)
source .venv/bin/activate && HYPOTHESIS_PROFILE=ci pytest
```

### Utility Scripts

| Script | Purpose |
|--------|---------|
| `scripts/install-steering-and-skills.sh` | Copies `docs/steering/` and `docs/skills/` to `~/.kiro/` |
| `scripts/sync-to-kiro-settings.sh` | Merges `settings/allowed_commands.txt` into Kiro's `settings.json` |
| `scripts/update-allowed-commands.sh` | Extracts trusted commands from Kiro's `settings.json` into `settings/allowed_commands.txt` |

## License

Apache 2.0 — see [LICENSE](LICENSE) for details.
