Draft
Conversation
Co-authored-by: toby-coleman <13170610+toby-coleman@users.noreply.github.com> Agent-Logs-Url: https://github.com/plugboard-dev/plugboard/sessions/9838abe7-586f-4002-8c81-951efe0fe33b
Co-authored-by: toby-coleman <13170610+toby-coleman@users.noreply.github.com> Agent-Logs-Url: https://github.com/plugboard-dev/plugboard/sessions/9838abe7-586f-4002-8c81-951efe0fe33b
Co-authored-by: toby-coleman <13170610+toby-coleman@users.noreply.github.com> Agent-Logs-Url: https://github.com/plugboard-dev/plugboard/sessions/9838abe7-586f-4002-8c81-951efe0fe33b
Copilot created this pull request from a session on behalf of
toby-coleman
March 25, 2026 07:57
View session
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new
plugboard ai initCLI command that creates anAGENTS.mdfile in the current working directory (or a specified directory). The file provides AI coding agents with instructions for building Plugboard models, following the convention used by tools like Claude Code, Codex, and Gemini CLI.The
AGENTS.mdtemplate is kept in sync withexamples/AGENTS.mdvia a symlink in the package.Changes
plugboard/cli/ai/__init__.py— New CLI module withinitcommand using Typer, following existing CLI patterns (rich output, stderr for errors).plugboard/cli/ai/AGENTS.md— Symlink toexamples/AGENTS.mdso the distributed template stays in sync with the examples.plugboard/cli/__init__.py— Registeraisubcommand in the main CLI app.tests/unit/test_cli.py— 3 new tests: successful creation, already-exists error, and default directory behavior.docs/usage/ai.md— Documentation page for the new command.mkdocs.yaml— Added "AI-Assisted Development" nav entry under Usage.examples/AGENTS.md— Fixed two typos (componen→component, duplicateSQLReader→SQLWriter).