HN user

juunge

113 karma
Posts52
Comments6
View on HN
kasperjunge.com 10d ago

The Meta Repo

juunge
1pts0
kasperjunge.com 12d ago

Capitalism Gone Wrong

juunge
39pts50
kasperjunge.com 20d ago

We Don't Have to Be This Bad at Improving Society

juunge
65pts110
computerlove.tech 1mo ago

An Early Example of Super Bad AI Governance

juunge
2pts0
kasperjunge.com 1mo ago

Everyone got excited they can suddenly code, and missed the point

juunge
2pts0
kasperjunge.github.io 3mo ago

Share AI Agent Skills Across Your Team

juunge
2pts0
ralphify.co 3mo ago

Ralph.md: A Markdown format for autonomous coding-agent loops

juunge
1pts1
kasperjunge.com 5mo ago

Skills Are Replacing Commands, Rules, and Subagents

juunge
1pts0
github.com 6mo ago

Show HN: NPM/uv for Claude Code – install skills from GitHub with one command

juunge
1pts1
github.com 6mo ago

Show HN: Skill-Add – Share and Install Claude Code Skills from GitHub

juunge
2pts0
blog.kasperjunge.com 1y ago

MCP (Or Similar Standards) Could Change the Way We Use Software with AI

juunge
1pts0
blog.kasperjunge.com 1y ago

The Next Big Platform Is Language

juunge
1pts0
kasperjunge.github.io 1y ago

How xAI made the world largest GPU cluster operational in 122 days

juunge
2pts1
blog.kasperjunge.com 1y ago

Prompting Patterns: The Clarification Pattern

juunge
1pts0
github.com 1y ago

Copcon: CLI tool for copying code project context to clipboard

juunge
2pts0
blog.kasperjunge.com 1y ago

Regular People Are Becoming Machine Learning Engineers

juunge
2pts0
blog.kasperjunge.com 1y ago

Most Software Is Not Made for Understanding Language

juunge
1pts0
blog.kasperjunge.com 1y ago

Action Engines and the Language-First Software Design Paradigm

juunge
1pts0
github.com 1y ago

Copcon: Rapid Code Context for AI-Assistants

juunge
1pts0
blog.kasperjunge.com 2y ago

Beautiful AI-Based Products

juunge
1pts0
blog.kasperjunge.com 2y ago

Prompting Patterns: The Clarification Pattern

juunge
1pts0
medium.com 2y ago

Principles of PyTorch

juunge
1pts0
medium.com 2y ago

Semaphore in Asyncio

juunge
1pts0
cdn.openai.com 2y ago

GPT-4V(ision) system card [pdf]

juunge
46pts15
blog.kasperjunge.com 2y ago

Text classifiers are an underrated application of LLMs

juunge
94pts34
blog.kasperjunge.com 2y ago

A Process for Building LLM Classifiers

juunge
3pts0
eugeneyan.com 2y ago

How to Match LLM Patterns to Problems

juunge
1pts0
github.com 2y ago

OpenAI: How to Handle Rate Limits

juunge
2pts0
github.com 2y ago

LlamaAPI SDK

juunge
1pts0
www.llama-api.com 2y ago

LLama API – First implementation of AI Functions on open-source models

juunge
1pts0

RALPH.md is a skill-like format for reusable agent loops. It defines the outer loop around an agent run: the agent command, the commands to run between iterations, the arguments for steering, and the prompt body. That makes it possible to package and share loops that run repeatedly until stopped. I’ve been writing down example patterns and use cases in the cookbook as I learn what works well: https://ralphify.co/docs/cookbook/

I’ve made a CLI tool that does something similar, called Copcon:

https://github.com/kasperjunge/copcon

Point it at a code project directory to get a file tree and content, optionally with a git diff, copied to the clipboard - ready for copy pasting into ChatGPT.

It is very true that this only works for small projects, as you will bloat the LLM’s context with large codebases.

My solution to this is two files you can use to steer the tool’s behavior:

- .copconignore: For ignoring specific files and directories.

- .copcontarget: For targeting specific files and directories (applied before .copconignore).

These two files provide great control over what to include and exclude in the copied context.