From b73ae1900888d72f2a5c79372cf0e965fb872e91 Mon Sep 17 00:00:00 2001 From: Said Nizamutdinov Date: Fri, 17 Apr 2026 17:24:58 +0300 Subject: [PATCH 1/2] Add blueprint reference to AGENTS.md and project settings Link to the shared rust-cli-sdk-blueprint repo so agents and developers reference canonical conventions when making architectural decisions. Co-Authored-By: Claude Opus 4.6 --- .claude/settings.json | 7 +++++++ .gitignore | 3 +++ AGENTS.md | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..2079082 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,7 @@ +{ + "permissions": { + "allow": [ + "WebFetch(domain:raw.githubusercontent.com)" + ] + } +} diff --git a/.gitignore b/.gitignore index ea8c4bf..d65cca6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ /target + +# Claude Code local settings (user-specific) +.claude/settings.local.json diff --git a/AGENTS.md b/AGENTS.md index dfed0a1..3edc25c 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,5 +1,10 @@ # Repository Guidelines +> **Blueprint:** This project follows the conventions in +> [rust-cli-sdk-blueprint](https://github.com/ghostspice/rust-cli-sdk-blueprint) +> (`instruction-template.md`). Fetch it when making architectural decisions, +> adding new modules, or reviewing PRs. This repo is a `*-cli` crate. + ## Project Layout - `src/main.rs`: entrypoint — parses CLI and delegates to `run()`. From 355ec8c456f27ca5fba02f29bb1807ea87642902 Mon Sep 17 00:00:00 2001 From: Said Nizamutdinov Date: Fri, 17 Apr 2026 17:28:07 +0300 Subject: [PATCH 2/2] Remove .claude/settings.json from PR Co-Authored-By: Claude Opus 4.6 --- .claude/settings.json | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json deleted file mode 100644 index 2079082..0000000 --- a/.claude/settings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "permissions": { - "allow": [ - "WebFetch(domain:raw.githubusercontent.com)" - ] - } -}