Skip to content

Instantly share code, notes, and snippets.

@nick0lay
nick0lay / SKILL.md
Created April 18, 2026 19:47
Claude Code Git Worktree Manager

name: parallel-agents description: >- Orchestrate parallel headless Claude Code sessions in isolated git worktrees. Each task (a PRD implementation OR a free-form generic prompt) runs in its own worktree with its own session. Activate when the user wants to run one or more tasks in parallel ("implement PRD-010 and PRD-012 in parallel", "start PRD-010 in a worktree", "run this prompt in the background", "investigate the flaky calendar test in a worktree", "try this refactor in isolation"), check on parallel tasks they already started ("how's PRD-010 going", "any updates",

@nick0lay
nick0lay / Testing.java
Created January 10, 2016 21:41 — forked from daverix/Testing.java
Dagger2 sub components example
package com.example;
import javax.inject.Scope;
import javax.inject.Singleton;
import dagger.Component;
import dagger.Module;
import dagger.Provides;
import dagger.Subcomponent;
@nick0lay
nick0lay / run_groovy.gradle
Last active September 17, 2015 20:24 — forked from tomgullo/run_groovy.gradle
run groovy in gradle
//You can create src/main/groovy, put your script called 'myscript.groovy' in there:
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'application'
configurations {
excludeFromJar
compile.extendsFrom excludeFromJar
}
private static OkHttpClient getUnsafeOkHttpClient() {
try {
// Create a trust manager that does not validate certificate chains
final TrustManager[] trustAllCerts = new TrustManager[] {
new X509TrustManager() {
@Override
public void checkClientTrusted(java.security.cert.X509Certificate[] chain, String authType) throws CertificateException {
}
@Override