Skip to content

Commit 9d35c15

Browse files
committed
Update build and rules
# Conflicts: # .claude/CLAUDE_CODE_GUIDE.md # .claude/rules/CLAUDE_CODE_GUIDE.md # .refactoring/CLAUDE_CODE_GUIDE.md # build.zig.zon
1 parent c1d4753 commit 9d35c15

File tree

5 files changed

+13
-150
lines changed

5 files changed

+13
-150
lines changed
File renamed without changes.

.claude/rules/CLAUDE_CODE_QUICK.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ CRITICAL:
3535
- Edit files in-place
3636
- Zero functionality changes
3737
- Verify syntax after each file
38+
- **NEVER execute git commands automatically**
39+
- **ALWAYS ask for explicit user permission before ANY git operation**
40+
- This includes: `git add`, `git commit`, `git push`, `git checkout`, `git branch`, etc.
41+
- When suggesting git operations, present the commands and wait for user approval
42+
- Example: "I suggest running: `git add file.zig`. Should I proceed?" and wait for confirmation
43+
3844

3945
PROCESS:
4046
1. List all .zig files

CLAUDE.md

Lines changed: 0 additions & 45 deletions
This file was deleted.

TYPE_REFERENCE.md

Lines changed: 0 additions & 99 deletions
This file was deleted.

build.zig.zon

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
// It is redundant to include "zig" in this name because it is already
88
// within the Zig package namespace.
99
.name = .syslog,
10-
10+
.fingerprint = 0xc142e2d7e489abf4,
1111
// This is a [Semantic Version](https://semver.org/).
1212
// In a future version of Zig it will be used for package deduplication.
1313
.version = "0.0.0",
1414

15-
.fingerprint = 0xc142e2d735dcd6b0,
16-
17-
.minimum_zig_version = "0.14.1",
15+
// This field is optional.
16+
// This is currently advisory only; Zig does not yet do anything
17+
// with this value.
18+
//.minimum_zig_version = "0.11.0",
1819

1920
// This field is optional.
2021
// Each dependency must either provide a `url` and `hash`, or a `path`.
@@ -23,8 +24,8 @@
2324
// internet connectivity.
2425
.dependencies = .{
2526
.mailbox = .{
26-
.url = "https://github.com/g41797/mailbox/archive/master.tar.gz",
27-
.hash = "mailbox-0.0.0-eJsHsMBEAACjbrEiAWogXHrTTXjUheNjxm-PLKTUQWCz",
27+
.url = "git+https://github.com/g41797/mailbox#afa8c15099937aa559cd8639f7ab85bf3cbc1fc8",
28+
.hash = "12208d8777b69f62cccf70b4372d8c31a22bb022881279713d424689d6555532d389",
2829
},
2930
.network = .{
3031
.url = "git+https://github.com/ikskuh/zig-network#805ce63eec48373ec497542f18f19d7c484b9b2e",

0 commit comments

Comments
 (0)