SDD의 L0-L4 스펙 계층을 스크립트 인프라와 함께 구축하고 claudie-workflow 자체에 dogfooding하면, "사용자 입력 → L4 구체화 → LLM 한 방 완료"라는 궁극 비전(decision 051)의 첫 번째 실동작 검증이 가능하다.
/c-epic startStep 2에서 기록. Step 4에서 EnterPlanMode로 이 내용이 공식 plan으로 적용됨. 첫 항목은 반드시 Ralph Loop 셋업이어야 함.
| BODY=${1:-"Finished"} | |
| DATA='{"title":"Done","type":"note","body":"'$BODY'"}' | |
| curl --header 'Access-Token: <YOUR_TOKEN_HERE>' \ | |
| --header 'Content-Type: application/json' \ | |
| --data-binary $DATA \ | |
| --silent \ | |
| --request POST \ | |
| https://api.pushbullet.com/v2/pushes > /dev/null |
| #!/bin/bash | |
| if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then | |
| echo "~/Library/KeyBindings/DefaultkeyBinding.dict already exists" | |
| exit -1 | |
| fi | |
| mkdir -p ~/Library/KeyBindings | |
| cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict | |
| { | |
| "₩" = ("insertText:", "\`"); |
| function pad0(num) { | |
| return num < 10 ? '0' + num.toString() : num.toString(); | |
| } | |
| function getDateStringDaysAgo(days) { | |
| const date = new Date(Date.now() - (days * 24 * 60 * 60 * 1000)); | |
| return date.getFullYear() + "-" + pad0(date.getMonth() + 1) + "-" + pad0(date.getDate()); | |
| } | |
| /** |
| var Adder = function Adder() { | |
| console.log(arguments); | |
| this.list = Array.prototype.slice.apply(arguments); | |
| }; | |
| Adder.prototype.sum = function sum() { | |
| var sum = 0; | |
| this.list.forEach(function(x) { | |
| sum += x; |
| /** | |
| * A simple socket.io client for performance benchmark | |
| * | |
| * Created by redism on 2014. 4. 22.. | |
| */ | |
| var SocketIO = require('socket.io-client'), | |
| argv = require('optimist').argv; | |
| var n = argv.n || 10; |
| [-:] redism@~: ab -n 10000 -c 10 http://127.0.0.1:2131/api/user/1 | |
| This is ApacheBench, Version 2.3 <$Revision: 655654 $> | |
| Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ | |
| Licensed to The Apache Software Foundation, http://www.apache.org/ | |
| Benchmarking 127.0.0.1 (be patient) | |
| Finished 10000 requests | |
| Server Software: |