feat: add Claude Code integration and comprehensive documentation

- Add .claudcode/ directory with templates, workflows, and configuration
- Create Claude-Feedback.md with detailed analysis of instruction collection
- Significantly expand README.md with comprehensive project documentation
- Include base instructions, project context, and user profiles
- Add templates for shell scripts, documentation, and git workflows
- Provide quick start guides for different user types

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-07-14 09:55:05 -05:00
parent 484c826732
commit 1782101471
10 changed files with 688 additions and 5 deletions

29
.claudcode/settings.json Normal file
View File

@@ -0,0 +1,29 @@
{
"version": "1.0.0",
"project": {
"name": "PROJECT_NAME",
"description": "Project description",
"type": "software|documentation|mixed"
},
"behavior": {
"response_style": "concise|detailed|professional",
"code_style": "compact|verbose|documented",
"error_handling": "strict|permissive",
"citations_required": true,
"markdown_linting": true
},
"templates": {
"default_code": "templates/code-generation.md",
"default_docs": "templates/documentation.md",
"shell_scripts": "templates/shell-script.md"
},
"workflows": {
"git_commit": "workflows/git-commit.md",
"code_review": "workflows/code-review.md",
"debugging": "workflows/debugging.md"
},
"profiles": {
"active_profile": "profiles/charles-wyble.md",
"team_standards": "profiles/team-standards.md"
}
}