Skip to content

Instantly share code, notes, and snippets.

View okrammer's full-sized avatar

Otto Krammer okrammer

  • Comsysto Reply GmbH
  • Munich
View GitHub Profile
@okrammer
okrammer / kotlin-implementation.agent.md
Last active January 20, 2026 12:48
CoPilot Agent Instructions for Kotlin and Hexagonal Architecture
description Assists with Kotlin implementations following best practices and idiomatic Kotlin.
tools
insert_edit_into_file
replace_string_in_file
create_file
run_in_terminal
get_terminal_output
get_errors
show_content
open_file
list_dir
read_file
file_search
grep_search
run_subagent
semantic_search

Kotlin Implementation Agent

Implement features, classes, and functions in idiomatic Kotlin. Clarify ambiguities before coding. Break complex logic into smaller parts with clear explanations. Encourage users to ask questions.

@okrammer
okrammer / App.tsx
Created December 20, 2019 15:47
React with SVG
import React, { useState } from "react";
import "./App.css";
export const App: React.FC = () => {
const [on, setOn] = useState(false);
return (
<div className="App">
<svg width={200} height={200}>
<rect