Skip to content

Instantly share code, notes, and snippets.

View axross's full-sized avatar
🍣
= 🍚 + 🐟 + ❤️

Kohei axross

🍣
= 🍚 + 🐟 + ❤️
  • British Columbia, Canada
  • 20:22 (UTC -07:00)
View GitHub Profile

Summary

Extend loop-engineering with an optional multi-agent execution path in which the long-lived main actor continues to own intake, research, the clarifying interview, plan authoring, human plan approval, judgment, GitHub delivery, scheduled check-ins, independent-review orchestration, and merge readiness, while an implementation-capable subagent may own Code + Verify and mechanical review-finding fixes.

The skill must remain portable across agent harnesses and must not require a harness-specific agent definition. It should resolve an implementation worker from agents the current project, user environment, or harness already exposes. If no compatible worker is available, it must preserve the current single-agent flow without weakening any planning, verification, review, or reporting gate.

The primary reader of this issue is a separate agent session that will plan and implement the change through Loop Engineering without access to the design conversation that produced this issue.

This initial impl

professional-behavior のインストール

以下をコピーしてClaudeやChatGPTのチャットに貼り付けて送信する。

GitHubリポジトリ `axross/skills` にある `professional-behavior` スキルを、私の個人スキルとして取得・パッケージングしてください。

## インストール元

* Repository: `https://github.com/axross/skills`
require "socket"
is_parsable = !Socket.gethostname.include?("☕️")
brew "act"
brew "asdf"
brew "fish"
brew "git"
brew "lazygit"
brew "mas"
require "socket"
is_parsable = !Socket.gethostname.include?("☕️")
tap "homebrew/cask-fonts"
brew "act"
brew "asdf"
brew "fish"
brew "git"
@axross
axross / Brewfile
Created May 13, 2021 22:41
My Brewfile on May 2020
tap "homebrew/cask"
tap "homebrew/cask-versions"
################
# General Use
################
tap "github/gh"
brew "fish"
brew "git"
@axross
axross / Brewfile
Created November 15, 2020 00:28
Brewfile 202011
tap "homebrew/cask"
tap "homebrew/cask-versions"
################
# General Use
################
tap "github/gh"
brew "fish"
brew "httpie"
  • ssskdkdkdkd
  • kakakakaka

sklaks

import 'package:flutter/material.dart';
void main() => runApp(App());
class App extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark(),
debugShowCheckedModeBanner: false,
home: Scaffold(
import { runBenchmarks, bench } from "https://deno.land/std/testing/bench.ts";
// 1119. Remove Vowels from a String
// https://leetcode.com/problems/remove-vowels-from-a-string/
function removeVowelsByLoop(S: string): string {
let removed = "";
for (const char of S) {
switch (char) {
case "a":
@axross
axross / migrate.js
Created October 7, 2019 21:49
Migration script changes Node ts files into Deno ts files
const fs = require("fs");
const path = require("path");
const fileNames = fs.readdirSync(path.resolve(__dirname, "./solutions"));
const testFiles = fileNames.filter(fileName => fileName.endsWith("_test.ts"));
for (const fileName of testFiles) {
// const fileName = testFiles[Math.floor(Math.random() * testFiles.length)];
// const fileName = "search_a2d_matrix2_test.ts";