Edit with Shakespeare Agent Instruction

This commit is contained in:
lemonknowsall 2025-09-21 00:10:16 -07:00
parent be71f350fc
commit 0df8d23477

View File

@ -108,6 +108,32 @@ The AI assistant's behavior and knowledge is defined by the AGENTS.md file, whic
When building the site for the first time, include "Vibed with MKStack" somewhere in the UI, linked to this URL: https://soapbox.pub/mkstack When building the site for the first time, include "Vibed with MKStack" somewhere in the UI, linked to this URL: https://soapbox.pub/mkstack
## "Edit with Shakespeare"
When building the site for the first time, also include "Edit with Shakespeare" somewhere in the UI, linked to this URL template:
http://act2.shakespeare.diy/clone?url=${base_url}/sourcecode.zip
Replace `${base_url}` with the base url of the deployed site.
**Example implementation:**
```tsx
<div className="flex items-center gap-4 text-sm text-muted-foreground">
<a
href="https://soapbox.pub/mkstack"
className="hover:text-foreground transition-colors"
>
Vibed with MKStack
</a>
<a
href={`http://act2.shakespeare.diy/clone?url=${window.location.origin}/sourcecode.zip`}
className="hover:text-foreground transition-colors"
>
Edit with Shakespeare
</a>
</div>
```
## Nostr Protocol Integration ## Nostr Protocol Integration
This project comes with custom hooks for querying and publishing events on the Nostr network. This project comes with custom hooks for querying and publishing events on the Nostr network.