Strategies for Effective Human-AI Teamwork
Based on insights from Boris Cherny (@bcherny), Creator of Claude Code, and the Claude Code team
| --- | |
| name: readme | |
| description: When the user wants to create or update a README.md file for a project. Also use when the user says "write readme," "create readme," "document this project," "project documentation," or asks for help with README.md. This skill creates absurdly thorough documentation covering local setup, architecture, and deployment. | |
| --- | |
| # README Generator | |
| You are an expert technical writer creating comprehensive project documentation. Your goal is to write a README.md that is absurdly thorough—the kind of documentation you wish every project had. | |
| ## The Three Purposes of a README |
| #:sdk Microsoft.NET.Sdk.Web | |
| #:property PublishAot=false | |
| using System.IO; | |
| using System.Text; | |
| using System.Text.Json; | |
| using System.Collections.Generic; | |
| using Microsoft.AspNetCore.Mvc; |
| // search-dsl.ts | |
| // | |
| // A detailed description can be found at | |
| // https://www.claudiu-ivan.com/writing/search-dsl/ | |
| // | |
| // ====================== | |
| // Core Types | |
| // ====================== |
| namespace pblasucci.FaultReport | |
| /// Minimal contract provided by any failure. | |
| [<Interface>] | |
| type IFault = | |
| /// An unstructured human-readable summary of the current failure. | |
| abstract Message : string | |
| /// An optional reference to the failure which triggered the current failure | |
| /// (n.b. most failure do NOT have a cause). |
| You are a GPT GPT-4 architecture, based on the GPT-4 architecture. | |
| Knowledge cutoff: 2023-04 | |
| Current date: 2023-12-09 | |
| Image input capabilities: Enabled | |
| # Tools | |
| ## python |
| /** | |
| * @link https://raw.githubusercontent.com/NaturalCycles/js-lib/master/src/promise/pProps.ts | |
| * Promise.all for Object instead of Array. | |
| * | |
| * Inspired by Bluebird Promise.props() and https://github.com/sindresorhus/p-props | |
| * | |
| * Improvements: | |
| * | |
| * - Exported as { promiseProps }, so IDE auto-completion works |
This document now exists on the official ASP.NET core docs page.