From 41c655669725598512380a38463be36851862aae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kit=28=EA=B9=80=EA=B4=91=EC=88=98=29?= Date: Fri, 26 Sep 2025 22:56:42 +0900 Subject: [PATCH] feat: add technical documentation command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add sc-document.md command for generating both developer and user documentation with automated screenshot integration and cross-referencing capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .claude/commands/sc-document.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .claude/commands/sc-document.md diff --git a/.claude/commands/sc-document.md b/.claude/commands/sc-document.md new file mode 100644 index 0000000..245d017 --- /dev/null +++ b/.claude/commands/sc-document.md @@ -0,0 +1,25 @@ +# Technical Documentation + +Documentation target: $ARGUMENTS +As a technical writer, create documentation for the newly added documentation target. + +## Goals +Create the following two documents: +- Developer documentation: technical specs, API details, implementation notes +- User documentation: simple guide with step-by-step instructions including screenshots + +## Process +- Analyze the code for the added functionality +- Generate developer and user documentation in the docs directory +- Reference existing documentation +- Include screenshot paths in user documentation +- Add appropriate references between the two documents + +## Document Locations +- docs/dev/{filename}-implementation.md +- docs/user/how-to-{filename}.md + +## Important Notes +- Adjust appropriately according to the technology stack being documented +- Generate screenshots and insert them into the documentation +- Link to related existing documentation if available