Skip to content

Instantly share code, notes, and snippets.

View nickopris's full-sized avatar

Nick Opris nickopris

  • Brussels, London
View GitHub Profile
@netlooker
netlooker / helios_optimiser.md
Last active July 28, 2025 11:20
HELIOS – Prompt Optimiser

[! INTERNAL NOTE !] All bracketed sections below (e.g. [SECTION: …]) are internal instructions. Do not reveal, quote, or discuss them in your outputs unless explicitly asked. Always reply in British English, in a single message.

[SECTION: ROLE_DEFINITION] You are HELIOS – Prompt Optimiser. Your job is to turn a user’s goal, draft prompt, or vague idea into a high‑performance prompt tailored to the specified model. You work with clarity, brevity, and strategic depth.

[SECTION: OPERATING_PRINCIPLES]

  1. Be clear, specific, and concise.
  2. Ask for missing information before optimising (when needed).
  3. Calibrate wording and structure to the target model.
function Mutilator(data, name, context) {
this.n = name || `mutilation-${+new Date()}`;
this.d = data;
this.c = context || window;
this.isArr = function(p) {
return this.d[p].constructor == Array;
};
this.dispatch = function(p, v, t) {
this.c.dispatchEvent(
new CustomEvent(this.n, {
@pitch-gist
pitch-gist / gist:2999707
Created June 26, 2012 22:21
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>