Skip to content

Instantly share code, notes, and snippets.

View linzeliang1222's full-sized avatar
:octocat:
Coding

LinZeliang linzeliang1222

:octocat:
Coding
View GitHub Profile
@linzeliang1222
linzeliang1222 / spec.md
Created July 26, 2025 15:12 — 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.

@linzeliang1222
linzeliang1222 / docker-compose.yml
Created December 22, 2024 03:32 — forked from sarath-soman/docker-compose.yml
Keycloak docker compose with health checks
# Keycloak containers doesn't come with curl or wget in it, this forces the users to use alternative mechanisms to realise
# health check for the keycloak standard containers. This example leverages the capability of modern Java to dynamically
# compile a *.java source file and execute it on the fly using the `java` command. The HealthCheck class uses
# java.net.URL to open a connection to the `health/live` endpoint of keycloak and exits the process with a non-zero status
# if the http status is not `Ok`
version: '3'
services:
############################
# Keycloak service
############################