Skip to content

Commit 4aee80e

Browse files
committed
chore: RSR sync and mass repository update
1 parent 48c012f commit 4aee80e

2 files changed

Lines changed: 107 additions & 6 deletions

File tree

.gitignore

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# RSR-compliant .gitignore
12
# SPDX-License-Identifier: PMPL-1.0-or-later
23
# Docudactyl .gitignore
34

@@ -79,3 +80,102 @@ htmlcov/
7980

8081
# ── Crash Recovery ───────────────────────────────────────────────
8182
ai-cli-crash-capture/
83+
84+
85+
# OS & Editor
86+
.DS_Store
87+
Thumbs.db
88+
*.swp
89+
*.swo
90+
*~
91+
.idea/
92+
.vscode/
93+
94+
95+
# Build
96+
/target/
97+
/_build/
98+
/build/
99+
/dist/
100+
/out/
101+
/zig-out/
102+
/zig-cache/
103+
104+
105+
# Dependencies
106+
/node_modules/
107+
/vendor/
108+
/deps/
109+
/.elixir_ls/
110+
111+
112+
# Rust
113+
114+
# Cargo.lock # Keep for binaries
115+
116+
117+
# Elixir
118+
/cover/
119+
/doc/
120+
*.ez
121+
erl_crash.dump
122+
123+
124+
# Julia
125+
*.jl.cov
126+
*.jl.mem
127+
/Manifest.toml
128+
129+
130+
# ReScript
131+
/lib/bs/
132+
/.bsb.lock
133+
134+
135+
# Python (SaltStack only)
136+
__pycache__/
137+
*.py[cod]
138+
.venv/
139+
140+
141+
# Ada/SPARK
142+
*.ali
143+
/obj/
144+
/bin/
145+
146+
147+
# Haskell
148+
/.stack-work/
149+
/dist-newstyle/
150+
151+
152+
# Chapel
153+
*.chpl.tmp.*
154+
155+
156+
# Secrets
157+
.env
158+
.env.*
159+
*.pem
160+
*.key
161+
secrets/
162+
163+
164+
# Test/Coverage
165+
/coverage/
166+
htmlcov/
167+
168+
169+
# Logs
170+
*.log
171+
/logs/
172+
173+
174+
# Machine-readable locks
175+
.machine_readable/.locks/
176+
177+
178+
# Temp
179+
/tmp/
180+
*.tmp
181+
*.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)