Skip to content

Commit 8cfb117

Browse files
hyperpolymathclaude
andcommitted
Rescue sinople-journal-theme from archive as journal-theme
Stripped sinople- prefix to match monorepo naming conventions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 91466f1 commit 8cfb117

190 files changed

Lines changed: 19286 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
;; .bot_directives — per-bot rules and constraints
3+
;; Media-Type: application/vnd.bot-directives+scm
4+
5+
(bot-directives
6+
(version "1.0")
7+
(notes
8+
"Repo-specific bot constraints."
9+
"Bots must follow these directives in addition to global policies."))
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
(bot-directive
3+
(bot "echidnabot")
4+
(scope "formal verification and fuzzing")
5+
(allow ("analysis" "fuzzing" "proof checks"))
6+
(deny ("write to core modules" "write to bindings"))
7+
(notes "May open findings; code changes require explicit approval"))
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
(bot-directive
3+
(bot "finishbot")
4+
(scope "release readiness")
5+
(allow ("release checklists" "docs updates" "metadata fixes"))
6+
(deny ("code changes without approval"))
7+
(notes "Focus on polish, licensing, and packaging"))
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
(bot-directive
3+
(bot "glambot")
4+
(scope "presentation + accessibility")
5+
(allow ("docs" "readme badges" "ui/accessibility suggestions"))
6+
(deny ("logic changes"))
7+
(notes "Edits limited to presentation layers"))
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
(bot-directive
3+
(bot "rhodibot")
4+
(scope "rsr-compliance")
5+
(allow ("metadata" "docs" "repo-structure checks"))
6+
(deny ("destructive edits without approval"))
7+
(notes "Auto-fix allowed only for formatting in docs and metadata"))
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
(bot-directive
3+
(bot "robot-repo-automaton")
4+
(scope "automated fixes")
5+
(allow ("low-risk automated edits"))
6+
(deny ("core logic changes without approval"))
7+
(notes "Only apply fixes backed by explicit rule approval"))
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
(bot-directive
3+
(bot "seambot")
4+
(scope "integration health")
5+
(allow ("analysis" "contract checks" "docs updates"))
6+
(deny ("code changes without approval"))
7+
(notes "May add integration test suggestions"))
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
;; SPDX-License-Identifier: PMPL-1.0-or-later
2+
(bot-directive
3+
(bot "sustainabot")
4+
(scope "eco/economic standards")
5+
(allow ("analysis" "reporting" "docs updates"))
6+
(deny ("code changes without approval"))
7+
(notes "Focus on measurement and recommendations"))

journal-theme/.claude/CLAUDE.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# CLAUDE.md - AI Assistant Instructions
2+
3+
## Language Policy (Hyperpolymath Standard)
4+
5+
### ALLOWED Languages & Tools
6+
7+
| Language/Tool | Use Case | Notes |
8+
|---------------|----------|-------|
9+
| **ReScript** | Primary application code | Compiles to JS, type-safe |
10+
| **Deno** | Runtime & package management | Replaces Node/npm/bun |
11+
| **Rust** | Performance-critical, systems, WASM | Preferred for CLI tools |
12+
| **Tauri 2.0+** | Mobile apps (iOS/Android) | Rust backend + web UI |
13+
| **Dioxus** | Mobile apps (native UI) | Pure Rust, React-like |
14+
| **Gleam** | Backend services | Runs on BEAM or compiles to JS |
15+
| **Bash/POSIX Shell** | Scripts, automation | Keep minimal |
16+
| **JavaScript** | Only where ReScript cannot | MCP protocol glue, Deno APIs |
17+
| **Nickel** | Configuration language | For complex configs |
18+
| **Guile Scheme** | State/meta files | STATE.scm, META.scm, ECOSYSTEM.scm |
19+
| **Julia** | Batch scripts, data processing | Per RSR |
20+
| **OCaml** | AffineScript compiler | Language-specific |
21+
| **Ada** | Safety-critical systems | Where required |
22+
23+
### BANNED - Do Not Use
24+
25+
| Banned | Replacement |
26+
|--------|-------------|
27+
| TypeScript | ReScript |
28+
| Node.js | Deno |
29+
| npm | Deno |
30+
| Bun | Deno |
31+
| pnpm/yarn | Deno |
32+
| Go | Rust |
33+
| Python | Julia/Rust/ReScript |
34+
| Java/Kotlin | Rust/Tauri/Dioxus |
35+
| Swift | Tauri/Dioxus |
36+
| React Native | Tauri/Dioxus |
37+
| Flutter/Dart | Tauri/Dioxus |
38+
39+
### Mobile Development
40+
41+
**No exceptions for Kotlin/Swift** - use Rust-first approach:
42+
43+
1. **Tauri 2.0+** - Web UI (ReScript) + Rust backend, MIT/Apache-2.0
44+
2. **Dioxus** - Pure Rust native UI, MIT/Apache-2.0
45+
46+
Both are FOSS with independent governance (no Big Tech).
47+
48+
### Enforcement Rules
49+
50+
1. **No new TypeScript files** - Convert existing TS to ReScript
51+
2. **No package.json for runtime deps** - Use deno.json imports
52+
3. **No node_modules in production** - Deno caches deps automatically
53+
4. **No Go code** - Use Rust instead
54+
5. **No Python anywhere** - Use Julia for data/batch, Rust for systems, ReScript for apps
55+
6. **No Kotlin/Swift for mobile** - Use Tauri 2.0+ or Dioxus
56+
57+
### Package Management
58+
59+
- **Primary**: Guix (guix.scm)
60+
- **Fallback**: Nix (flake.nix)
61+
- **JS deps**: Deno (deno.json imports)
62+
63+
### Security Requirements
64+
65+
- No MD5/SHA1 for security (use SHA256+)
66+
- HTTPS only (no HTTP URLs)
67+
- No hardcoded secrets
68+
- SHA-pinned dependencies
69+
- SPDX license headers on all files
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# SPDX-License-Identifier: PMPL-1.0
2+
FROM gcr.io/oss-fuzz-base/base-builder-rust@sha256:73c1d5648db54100639339d411a5d192cbc8bf413ee91e843a07cf6f0e319dc7
3+
4+
COPY . $SRC/sinople-journal-theme
5+
WORKDIR $SRC/sinople-journal-theme
6+
7+
COPY .clusterfuzzlite/build.sh $SRC/

0 commit comments

Comments
 (0)