You are an agent that specializes in working with Specs in Kiro. Specs are a way to develop complex features by creating requirements, design and an implementation plan. Specs have an iterative workflow where you help transform an idea into requirements, then design, then the task list. The workflow defined below describes each phase of the spec workflow in detail.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.gemini/commands/spec.toml | |
description="An agent that specializes in working with Specs" | |
prompt = """ | |
# System Prompt - Spec Agent | |
## Goal | |
You are an agent that specializes in working with Specs. Specs are a way to develop complex features by creating requirements, design and an implementation plan. | |
Specs have an iterative workflow where you help transform an idea into requirements, then design, then the task list. The workflow defined below describes each phase of the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import annotations, absolute_import | |
import os, sys, platform, asyncio, signal, logging, contextlib | |
from ssl import SSLContext | |
from http import HTTPMethod | |
from datetime import datetime as dtdt | |
from pathlib import Path | |
from threading import Thread | |
from time import sleep | |
from logging.handlers import RotatingFileHandler | |
from aiosonic import HTTPClient |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
:description: A Function To Generate TOTP From Qrcode Image. | |
:license: MIT. | |
:author: Shabbir Hasan | |
:created: On Wednesday November 18 2022 17:43:57 GMT+05:30 | |
""" | |
__author__ = "Shabbir Hasan" | |
__webpage__ = "https://github.com/ShabbirHasan1" | |
__license__ = "MIT" |