Skip to content

Commit 4b85ec5

Browse files
committed
chore: RSR sync and mass repository update
1 parent 55d9448 commit 4b85ec5

2 files changed

Lines changed: 105 additions & 6 deletions

File tree

.gitignore

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# RSR-compliant .gitignore
12
# Build artifacts
23
obj/
34
bin/
@@ -22,3 +23,100 @@ Thumbs.db
2223

2324
# Crash recovery artifacts
2425
ai-cli-crash-capture/
26+
27+
28+
# OS & Editor
29+
.DS_Store
30+
Thumbs.db
31+
*.swp
32+
*.swo
33+
*~
34+
.idea/
35+
.vscode/
36+
37+
38+
# Build
39+
/target/
40+
/_build/
41+
/build/
42+
/dist/
43+
/out/
44+
/zig-out/
45+
/zig-cache/
46+
47+
48+
# Dependencies
49+
/node_modules/
50+
/vendor/
51+
/deps/
52+
/.elixir_ls/
53+
54+
55+
# Cargo.lock # Keep for binaries
56+
57+
58+
# Elixir
59+
/cover/
60+
/doc/
61+
*.ez
62+
erl_crash.dump
63+
64+
65+
# Julia
66+
*.jl.cov
67+
*.jl.mem
68+
/Manifest.toml
69+
70+
71+
# ReScript
72+
/lib/bs/
73+
/.bsb.lock
74+
75+
76+
# Python (SaltStack only)
77+
__pycache__/
78+
*.py[cod]
79+
.venv/
80+
81+
82+
# Ada/SPARK
83+
*.ali
84+
/obj/
85+
/bin/
86+
87+
88+
# Haskell
89+
/.stack-work/
90+
/dist-newstyle/
91+
92+
93+
# Chapel
94+
*.chpl.tmp.*
95+
96+
97+
# Secrets
98+
.env
99+
.env.*
100+
*.pem
101+
*.key
102+
secrets/
103+
104+
105+
# Test/Coverage
106+
/coverage/
107+
htmlcov/
108+
109+
110+
# Logs
111+
*.log
112+
/logs/
113+
114+
115+
# Machine-readable locks
116+
.machine_readable/.locks/
117+
118+
119+
# Temp
120+
/tmp/
121+
*.tmp
122+
*.bak

contractiles/k9/README.adoc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ K9 contractiles integrate with other RSR standards:
130130
⚠️ **Never run as root unless required** +
131131
⚠️ **Sandbox external components**
132132

133-
**See:** https://github.com/hyperpolymath/k9-svc/blob/main/docs/SECURITY-BEST-PRACTICES.adoc
133+
**See:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/docs/SECURITY-BEST-PRACTICES.adoc
134134

135135
== Template Files
136136

@@ -154,14 +154,15 @@ chmod +x nickel && sudo mv nickel /usr/local/bin/
154154
cargo install just
155155
156156
# Clone K9-SVC (for must shim and tooling)
157-
git clone https://github.com/hyperpolymath/k9-svc.git
157+
git clone https://github.com/hyperpolymath/standards.git
158+
# Note: K9-SVC is located in standards/k9-svc
158159
----
159160

160161
== Learn More
161162

162-
- **K9-SVC Specification:** https://github.com/hyperpolymath/k9-svc/blob/main/SPEC.adoc
163-
- **K9 User Guide:** https://github.com/hyperpolymath/k9-svc/blob/main/GUIDE.adoc
164-
- **Security Documentation:** https://github.com/hyperpolymath/k9-svc/blob/main/docs/SECURITY-FAQ.adoc
163+
- **K9-SVC Specification:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/SPEC.adoc
164+
- **K9 User Guide:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/GUIDE.adoc
165+
- **Security Documentation:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/docs/SECURITY-FAQ.adoc
165166
- **IANA Media Type:** `application/vnd.k9+nickel`
166167

167168
== Contributing
@@ -174,4 +175,4 @@ When adding K9 contractiles to your repository:
174175
4. Sign Hunt-level components before committing
175176
5. Add K9 validation to CI/CD pipeline
176177

177-
**Questions?** Open an issue on https://github.com/hyperpolymath/k9-svc
178+
**Questions?** Open an issue on https://github.com/hyperpolymath/standards/tree/main/k9-svc

0 commit comments

Comments
 (0)