Skip to content

Commit 93a0db5

Browse files
committed
update
1 parent 7f084d2 commit 93a0db5

3 files changed

Lines changed: 12 additions & 7 deletions

File tree

coding-agent/AGENTS.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# Coding Style
1+
# Code Writing Style
22

33
- Declare variables immediately before use; minimize scope
4-
- Variable declarations should read as a summary of data flow
5-
- No comments that explain what code does; only why (constraints, non-obvious business rules)
4+
- Treat variable declarations as a summary of data flow
5+
- Extract functions for stepwise refinement and conceptual abstraction; tolerate structural duplication for distinct intentions
6+
- Comment strictly on the "why" (constraints, non-obvious business rules); let the code explain the "what"
67
- Test code should clearly describe WHAT is being tested
78

89
# Language
910

10-
- All documentation, comments, and commits in English
11+
- Write all documentation, comments, and commits in English

coding-agent/claude-code/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"$schema": "https://json.schemastore.org/claude-code-settings.json",
33
"model": "opus",
4+
"tui": "fullscreen",
5+
"enabledPlugins": {
6+
"commit-commands@claude-plugins-official": true
7+
},
48
"permissions": {
59
"allow": [
610
"Bash(cargo build *)",

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)