Share As Prompt

A button that copies code + instructions to your clipboard, ready to paste into any AI agent. Give Claude, ChatGPT, or Copilot everything needed to implement a feature in one click.

The Official Button

Copy the Button

HTML
<button class="sap-btn" onclick="navigator.clipboard.writeText(sapPrompt)">
  <span class="sap-icon">{→}</span> SAP
</button>
CSS
.sap-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 13px;
  color: #0f172a;
  background: linear-gradient(180deg, #f7d794, #f0c674);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 3px 0 #b8860b, 0 4px 8px rgba(0,0,0,0.2);
}
.sap-btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #b8860b;
}
.sap-icon { font-family: monospace; }

The SAP Format

Template
# Implement: [TITLE]

## Description
[What this does and why. 1-3 sentences.]

## Code
```[language]
[Full implementation here]
```

## Usage
```[language]
[Example usage with expected output]
```

Optional: Configuration, Dependencies, Source

Sites Using SAP

Notice: SAP copies prompts to your clipboard. Always review prompt contents before sending to any AI service. You are responsible for understanding and verifying any code you implement.