Skip to content

Commit 885cba0

Browse files
committed
chore: update AI-related files
Signed-off-by: Ilya Lesikov <ilya@lesikov.com>
1 parent b0e3c86 commit 885cba0

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ Nelm is a Go-based Kubernetes deployment tool, which deploys Helm charts, is com
44

55
## Commands
66

7-
Set `export TASK_X_REMOTE_TASKFILES=1` before running any `task` command.
8-
97
- `task build` — Build binary for current OS/arch to `./bin/`. Accepts `pkg=...` to build a specific package.
108
- `task format` — Run all formatters. Accepts `paths="./pkg/..."` to scope to a specific package.
119
- `task lint` — Run golangci-lint and prettier checks. Accepts `paths="./pkg/..."`.
@@ -49,6 +47,8 @@ Set `export TASK_X_REMOTE_TASKFILES=1` before running any `task` command.
4947
- Always use `task` commands for build/test/lint/format — never raw `go build`, `go test`, `go fmt`, or `golangci-lint` directly.
5048
- When logging → use `log.Default` from `pkg/log`. Never use `fmt.Println`, `slog`, or `logrus` directly.
5149
- Read and strictly follow the project code style defined in [CODESTYLE.md](CODESTYLE.md).
50+
- Verify, don't assume — always check the actual state before making changes.
51+
- Don't leave TODOs, stubs, or partial implementations.
5252

5353
## PR review guidelines
5454

CLAUDE.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,3 @@ After making changes, verify them end-to-end against the local dev cluster:
2323
## Code style
2424

2525
- When writing or modifying Go code, strictly follow @CODESTYLE.md.
26-
27-
## Work standards
28-
29-
- Verify, don't assume — always check the actual state before making changes.
30-
- Don't cut corners to save tokens — complete the full task.
31-
- Don't leave TODOs, stubs, or partial implementations.

0 commit comments

Comments
 (0)