Skip to content

Instantly share code, notes, and snippets.

@phoganuci
phoganuci / RFC.md
Created April 16, 2026 15:41
RFC: Claude Agents Framework

RFC: Claude Agents Framework

Summary

This RFC defines a reusable Claude Code framework installed at ~/.claude.

The framework is the shared process layer. It standardizes:

  • the root contract in CLAUDE.md
  • the typed documentation tree for routing, policy, playbooks, references, indexes, and decisions
@phoganuci
phoganuci / RequestConverter.java
Last active October 7, 2020 10:04
Retrofit2: How to URL form encode a map with nested objects and arrays for PUT/POST body.
package com.uber.harbinger.bandedo.example;
import com.google.common.base.Joiner;
import okhttp3.MediaType;
import okhttp3.RequestBody;
import retrofit2.Converter;
import javax.annotation.Nonnull;
import java.io.IOException;
import java.io.UnsupportedEncodingException;