Skip to content

Instantly share code, notes, and snippets.

View jiang-zx's full-sized avatar
🎯
Focusing

jiang zx jiang-zx

🎯
Focusing
View GitHub Profile
@CypherpunkSamurai
CypherpunkSamurai / spec.md
Last active October 20, 2025 03:34
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.

Interview Questions

Node.js

Q1: What do you mean by Asynchronous API? ☆☆

Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.

Source: tutorialspoint.com