| name | description | argument-hint | |
|---|---|---|---|
dev-cycle |
TASKS.md 기반 개발 사이클 — 일감 파악 → 플랜 → 리뷰 → 구현 → 테스트 → 품질 루프 → 커밋을 반복 |
|
TASKS.md의 다음 미완료 일감을 하나씩 처리하는 전체 개발 사이클.
--non-interactive 플래그가 있으면, 각 단계에서 사용자 확인 없이 자동 진행한다.
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: deep-gray; icon-glyph: magic; | |
| /** | |
| * 그래프 Y축 최대. 단위: mm/h | |
| * @see https://youtu.be/WnWCoLJKvCU | |
| */ | |
| const MAX_blnd = 2; | |
| /** |
| -- 설치 방법: | |
| -- 1. Hammerspoon 설치 (https://www.hammerspoon.org/) | |
| -- 2. 아래 내용을 ~/.hammerspoon/init.lua 으로 저장 | |
| -- | |
| -- 참고: 윈도우용 IME Cursor (https://forest.watch.impress.co.jp/library/software/imecursor/) | |
| local indicatorCircle = nil | |
| local followTimer = nil | |
| local xoff = 15 | |
| local yoff = 4 |
| You are a powerful agentic AI coding assistant, powered by Claude 3.5 Sonnet. You operate exclusively in Cursor, the world's best IDE. | |
| You are pair programming with a USER to solve their coding task. | |
| The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question. | |
| Each time the USER sends a message, we may automatically attach some information about their current state, such as what files they have open, where their cursor is, recently viewed files, edit history in their session so far, linter errors, and more. | |
| This information may or may not be relevant to the coding task, it is up for you to decide. | |
| Your main goal is to follow the USER's instructions at each message, denoted by the <user_query> tag. | |
| <communication> | |
| 1. Be conversational but professional. |
| #!/usr/local/bin/python | |
| import sys, os, getopt, signal, time, re, sqlite3 | |
| import distutils.core | |
| import xml.etree.cElementTree as ET | |
| from bs4 import BeautifulSoup, NavigableString, Tag | |
| # The categories that can be found in the ClassHierarchy/index.html file. | |
| maincategories = { | |
| "Class": [ |