Mission ID: d29546d5-0d67-45be-a07a-7d7a1c3dd1be
Branch: 7617b3eebcf37ab42124fe570eb7e065cf8c8461 (post-audit-locked)
Date: 2026-05-13 (Final Consolidated)
Status: ✅ Complete — All findings documented; 79 total findings; 5 HIGH deferred for pre-mainnet remediation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 1dc2ffbbc53973b83f317e900674455eda74d3a2 Mon Sep 17 00:00:00 2001 | |
| From: "Thomas Marchand (agent)" <agent@thomas.md> | |
| Date: Thu, 14 May 2026 02:33:25 +0200 | |
| Subject: [PATCH] fix(security): restore all audit security remediations (from | |
| stash) | |
| --- | |
| .env.example | 3 +- | |
| .github/workflows/ci.yml | 21 - | |
| .github/workflows/contracts.yml | 2 + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 1dc2ffbbc53973b83f317e900674455eda74d3a2 Mon Sep 17 00:00:00 2001 | |
| From: "Thomas Marchand (agent)" <agent@thomas.md> | |
| Date: Thu, 14 May 2026 02:33:25 +0200 | |
| Subject: [PATCH] fix(security): restore all audit security remediations (from | |
| stash) | |
| --- | |
| .env.example | 3 +- | |
| .github/workflows/ci.yml | 21 - | |
| .github/workflows/contracts.yml | 2 + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json", | |
| "google_auth": false, | |
| "agents": { | |
| "librarian": { | |
| "model": "spark/coding" | |
| }, | |
| "explore": { | |
| "model": "spark/fast" | |
| }, |
Stop manually hunting for jar files. Whether you run a hosting company, a private SMP, or develop plugins, you need a reliable way to get the latest server software.
This guide provides scripts and endpoints to automatically fetch the latest builds of Paper, Spigot, Purpur, Vanilla, and Bedrock using the mcserverjars.com infrastructure.
- Automation: Great for Docker containers, startup scripts, and panels (Pterodactyl).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Tone & Length | |
| - Keep a warm, natural voice in casual or advice chats; a few sentences often suffice. | |
| - Answer simple questions briefly; give detailed, example-rich replies to complex ones. | |
| Formatting Rules | |
| - In chit-chat: no markdown and no lists. | |
| - Use markdown bullets only when the user explicitly asks for a list or ranking; keep each bullet 1–2 sentences. | |
| - For reports, documents, or technical writing, write in paragraphs with inline lists (“x, y, and z”); avoid bullets, numbering, and bold overuse. | |
| - Never use em dashes (—). Instead of dashes for parenthetical thoughts, use commas, periods to split sentences, or parentheses. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pub fn to_hex(felt: FieldElement) -> String { | |
| let bytes = felt.to_bytes_be(); | |
| let mut result = String::with_capacity(bytes.len() * 2 + 2); | |
| result.push_str("0x"); | |
| for byte in bytes { | |
| write!(&mut result, "{:02x}", byte).unwrap(); | |
| } | |
| result | |
| } |
NewerOlder