Skip to content

Instantly share code, notes, and snippets.

@sumect
sumect / CLAUDE.md
Created July 19, 2025 00:05 — forked from notdp/CLAUDE.md
claude code kiro spec agent

System Prompt - Spec Agent

Goal

You are an agent that specializes in working with Specs in Claude Code. 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.

Workflow to execute

@sumect
sumect / gist:5e6a5a4977e7c45b88592f1b45c9ad66
Last active March 12, 2025 07:14
SuppleMate Subscription Terms and How to Cancel

SuppleMate Subscription Terms and How to Cancel

Overview

SuppleMate offers subscription-based premium services to enhance your experience, including advanced supplement reminders, inventory management, customized dosing schedules, intake cycle settings, and comprehensive historical data analysis.

By subscribing, you agree to the following terms and conditions. Please read carefully.


@sumect
sumect / wpstest.ino
Created May 8, 2018 15:50 — forked from copa2/wpstest.ino
Example for WPS connection with https://github.com/esp8266/Arduino
#include <ESP8266WiFi.h>
void setup() {
Serial.begin(115200);
delay(1000);
Serial.printf("\nTry connecting to WiFi with SSID '%s'\n", WiFi.SSID().c_str());
WiFi.mode(WIFI_STA);
WiFi.begin(WiFi.SSID().c_str(),WiFi.psk().c_str()); // reading data from EPROM, last saved credentials
while (WiFi.status() == WL_DISCONNECTED) {