Skip to content
Merged
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
190 changes: 0 additions & 190 deletions .claude-plugin/SKILL.md

This file was deleted.

2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"name": "context-daddy",
"source": "./",
"description": "Your codebase's context needs a responsible adult. Fast code exploration, living project narratives, and tribal knowledge that survives across sessions.",
"version": "0.10.5",
"version": "0.10.6",
"author": {
"name": "Robert Taylor"
},
Expand Down
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "context-daddy",
"version": "0.10.5",
"version": "0.10.6",
"description": "Your codebase's context needs a responsible adult. Fast code exploration, living project narratives, and tribal knowledge that survives across sessions.",
"author": {
"name": "Robert Taylor"
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy Documentation

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: write

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup mdbook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: 'latest'

- name: Build documentation
run: mdbook build

- name: Ensure .nojekyll exists
run: touch book/.nojekyll

- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: book
branch: gh-pages
clean-exclude: pr-preview
39 changes: 39 additions & 0 deletions .github/workflows/preview-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: PR Documentation Preview

on:
pull_request:
types: [opened, reopened, synchronize, closed]

concurrency: preview-${{ github.ref }}

permissions:
contents: write
pull-requests: write

jobs:
preview:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup mdbook
if: github.event.action != 'closed'
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: 'latest'

- name: Build documentation
if: github.event.action != 'closed'
run: mdbook build

- name: Ensure .nojekyll exists
if: github.event.action != 'closed'
run: touch book/.nojekyll

- name: Deploy PR preview
uses: rossjrw/pr-preview-action@v1
with:
source-dir: book
umbrella-dir: pr-preview
action: auto
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ Thumbs.db
# Build artifacts
skills.zip
.pdm-python
book/
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
*Your codebase's context needs a responsible adult.*

[![CI](https://github.com/ChipFlow/context-daddy/actions/workflows/ci.yml/badge.svg)](https://github.com/ChipFlow/context-daddy/actions/workflows/ci.yml)
[![Docs](https://github.com/ChipFlow/context-daddy/actions/workflows/pages.yml/badge.svg)](https://chipflow.github.io/context-daddy/)

**[Documentation](https://chipflow.github.io/context-daddy/)** · **[Changelog](CHANGELOG.md)**

## What

Expand Down
12 changes: 12 additions & 0 deletions book.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[book]
title = "context-daddy"
authors = ["Robert Taylor"]
language = "en"
src = "docs"

[build]
build-dir = "book"

[output.html]
git-repository-url = "https://github.com/ChipFlow/context-daddy"
edit-url-template = "https://github.com/ChipFlow/context-daddy/edit/main/{path}"
13 changes: 13 additions & 0 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Summary

[Introduction](index.md)

# Developer Guide

- [Architecture](architecture.md)
- [Testing](testing.md)
- [Roadmap](roadmap.md)

# Design Decisions

- [Full-Text Search](FTS_DESIGN.md)
File renamed without changes.
19 changes: 19 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Documentation

Internal documentation for context-daddy development.

## Contents

| Document | Description |
|----------|-------------|
| [architecture.md](architecture.md) | Process architecture - tree-sitter integration, multiprocess design, watchdog behavior |
| [testing.md](testing.md) | Testing guide - unit tests, CI workflows, E2E tests |
| [roadmap.md](roadmap.md) | Future enhancements and completed features |
| [FTS_DESIGN.md](FTS_DESIGN.md) | Full-text search design decisions |

## Quick Links

- **Main README**: [../README.md](../README.md)
- **Changelog**: [../CHANGELOG.md](../CHANGELOG.md)
- **Development Guide**: [../CLAUDE.md](../CLAUDE.md)
- **Plugin Skills**: [../SKILL.md](../SKILL.md)
File renamed without changes.
Loading