Skip to content

Instantly share code, notes, and snippets.

View sshlg's full-sized avatar
:octocat:
Focusing

Sergey S sshlg

:octocat:
Focusing
View GitHub Profile
pragma solidity ^0.4.16;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public constant returns (uint256);
[
{
"constant": false,
"inputs": [
{
"name": "_startDate",
"type": "uint256"
},
{
"name": "_endDate",
@sshlg
sshlg / proof-of-done.md
Last active August 27, 2026 03:52
A copy-paste completion protocol for AI coding agents.

Proof of Done: a completion protocol for AI coding agents

The standard for building software with AI agents.

This is the compact, operational version of The Proof of Done Manifesto. It is designed to be pasted into AGENTS.md, CLAUDE.md, or the context of a coding agent.

It does not replace tests, review, CI, or product validation. It defines what an agent must show before it may claim that software work is done.

The problem