Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python3
"""
Claude Code 세션 분석 및 시각화 통합 CLI
Usage:
python3 analyze_visualize.py --hours 24 # 최근 24시간
python3 analyze_visualize.py --days 7 # 최근 7일
python3 analyze_visualize.py --days 1 # 최근 1일 (어제+오늘)
python3 analyze_visualize.py --date 2025-11-06 2025-11-07 # 특정 날짜 범위
"""

Ai_Native_Methodology - 2025-09-16

Generated: 2025-09-17 03:51:02


제공된 AI 세션 데이터는 단순한 스크립트 아이디어가 완전한 CLI 애플리케이션으로 발전하는 전 과정을 담고 있습니다. 이 과정에서 나타난 AI 활용 패턴을 심층 분석하여, 생산성을 극대화하는 AI Native 개발 방법론을 구체적으로 제시합니다.

  • 생산성 높은 협업 방식 식별: 아이디어 구체화, 기능 추가, 디버깅 등 각 단계에서 개발자와 AI가 어떻게 상호작용하는지 분석합니다.
  • 효과적인 프롬프팅 패턴 추출: 모호한 아이디어를 구체적인 코드로 전환시킨 핵심적인 요청 방식을 도출합니다.
#!/usr/bin/env python3
"""
최근 N시간 Claude 대화를 raw 형태로 추출
python3 extract_conversation.py --hours 24 --output chat.txt
"""
import json
import os
@esc5221
esc5221 / claude_code_cost_visualizer.py
Last active June 5, 2025 04:47
claude_code_cost_visualizer.py
#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.9"
# dependencies = [
# "pandas>=2.0.0",
# "plotly>=6.0.0",
# "nbformat>=5.0.0",
# ]
# ///
"""
@esc5221
esc5221 / delete_gha_runs_by_name.py
Created December 14, 2022 10:36
delete github actions workflow runs by name
# resolves : Is there a way to delete or hide old/renamed Workflows? #26256
# https://github.com/community/community/discussions/26256
from multiprocessing.dummy import Pool as ThreadPool
import requests
TOKEN = "{YOUR_GH_TOKEN}"
OWNER_REPO = "esc5221/example_repo"
DELETE_TARGET_RUN_NAME = "{RUN NAME}"
@esc5221
esc5221 / karabiner_rule.json
Last active November 5, 2022 08:19
karabiner chrome tab navigation with right command and right option
"rules": [
{
"description": "Use right command and right option as chrome tab navigation",
"manipulators": [
{
"conditions": [
{
"identifiers": [
{
"vendor_id": 1452