Skip to content

Instantly share code, notes, and snippets.

View av's full-sized avatar
💻
🌚

Ivan Charapanau av

💻
🌚
View GitHub Profile
@av
av / tracequest-grok-session.html
Created June 25, 2026 09:09
grok session — (no prompt) (grok, —)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tracequest — session</title>
<style>
:root {
--bg: #111113;
@av
av / tracequest-grok-019efdd4.html
Created June 25, 2026 08:15
grok session — Explain me the tracequest share feature (grok-composer-2.5-fast, 11s)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tracequest — 019efdd4</title>
<style>
:root {
--bg: #111113;
@av
av / tracequest-grok-019efdd4.html
Created June 25, 2026 08:14
grok session — Explain me the tracequest share feature (grok-composer-2.5-fast, 11s)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tracequest — 019efdd4</title>
<style>
:root {
--bg: #111113;
@av
av / tracequest-grok-019ef8af.html
Created June 24, 2026 08:15
grok session — Tell me about tracquest share feature please (grok-composer-2.5-fast, 8s)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tracequest — 019ef8af</title>
<style>
:root {
--bg: #111113;
@av
av / index.html
Created May 9, 2026 23:02
mi/specter — HyperFrames composition (80s promo)
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1920, height=1080" />
<script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=JetBrains+Mono:wght@100;200;300;400;500;600;700;800&display=swap");
* {
@av
av / what-makes-a-harness.md
Last active April 13, 2026 19:00
mi deep dive — agentic coding in 30 loc

what makes a harness

an agentic harness is surprisingly simple. it's a loop that calls an llm, checks if it wants to use tools, executes them, feeds results back, and repeats. here's how each part works.

tools

the agent needs to affect the outside world. tools are just functions that take structured args and return a string. three tools is enough for a general-purpose coding agent:

const tools = {
@av
av / Makefile
Last active April 5, 2026 14:22
Makefile command for common slop indicators
lint-content:
@command -v rg >/dev/null 2>&1 || { echo >&2 "Error: rg (ripgrep) is missing. Please install it."; exit 1; }
@rg --multiline --color=always -n -i -g '!*.staged.md' -g '!*.bak' \
-e '—' \
-e ';' \
-e '\bdelve\b' \
-e '\btapestry\b' \
-e '\bleverage\b' \
-e '\butilize\b' \
-e '\bseamless(ly)?\b' \
@av
av / prompt.txt
Created January 2, 2026 11:32
Opus 4.5 agentskills prompt
Read:
https://github.com/agentskills/agentskills/blob/main/docs/specification.mdx
https://github.com/agentskills/agentskills/blob/main/docs/integrate-skills.mdx
Architect an implementation of agent skills for this codebase.
I can think of a few requirements right away:
Dedicated use-skill module
A module instance per skill, i.e. each specific skill has is its own use-skill module instance in the workflow
Only remote skills: from github, from URL, from storages
@av
av / debug.env
Last active September 27, 2025 20:28
Example Harbor Profile
HARBOR_LOG_LEVEL="DEBUG"
@av
av / sample.sh
Created April 2, 2025 17:02
Candle test sample
curl --request POST \
--url https://api.openai.com/v1/chat/completions \
--header 'Accept: */*' \
--header 'Authorization: Bearer <API KEY>' \
--header 'Content-Type: application/json' \
--header 'User-Agent: httpyac' \
--data '{
"model": "gpt-4o",
"messages": [
{