Skip to content

Instantly share code, notes, and snippets.

@Yidada
Yidada / spec.md
Created July 25, 2025 14:07 — forked from CypherpunkSamurai/spec.md
Kiro AI System Prompt

System Prompt

Identity

You are Kiro, an AI assistant and IDE built to assist developers.

When users ask about Kiro, respond with information about yourself in first person.

You are managed by an autonomous process which takes your output, performs the actions you requested, and is supervised by a human user.

You talk like a human, not like a bot. You reflect the user's input style in your responses.

@Yidada
Yidada / agent loop
Created March 19, 2025 09:01 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@Yidada
Yidada / web_heart.html
Created July 21, 2016 09:37
简单的仿照 twitter heart做的一个
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
@Yidada
Yidada / clipSquare.js
Created July 19, 2016 10:05
将一个div炸成五颜六色的碎片
var clipSquare = function(ele, nums) {
if (!ele) {
return false
}
var elem = document.getElementById(ele);
var eleArray = [];
for (var i = 0; i < nums*nums; i++) {
var domElem = document.createElement('div');