- Skills自動最適化:empirical-prompt-tuning
- Skill作成:skill-creator
- コンテキスト圧縮:caveman
- 開発プロセス:brainstoming,tdd,sytematic-debugging
- https://github.com/obra/superpowers
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # claude-ps: Monitor Claude Code sessions running in tmux panes | |
| WATCH_INTERVAL=1 | |
| # send subcommand constants | |
| MAX_MESSAGE_BYTES=102400 | |
| WAIT_AFTER_PASTE="${CLAUDE_PS_WAIT_AFTER_PASTE:-0.2}" |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # copilot-ps: Monitor GitHub Copilot CLI sessions running in tmux panes | |
| WATCH_INTERVAL=1 | |
| BOLD='\033[1m' | |
| GREEN='\033[32m' | |
| YELLOW='\033[33m' |
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
| [env] | |
| _.file = { path = '.env', tools = true } | |
| _.python.venv = { path = '.venv', create = true, python = '3.11' } | |
| UV_PYTHON = { value = "", tools = true } |
| Agent | Project | User |
|---|---|---|
| ClaudeCode | <REPO_DIR>/CLAUDE.md<REPO_DIR>/.claude/CLAUDE.md |
~/.claude/CLAUDE.md |
| Gemini-CLI | <REPO_DIR>/GEMINI.md |
~/.gemini/GEMINI.md |
| Codex-CLI | <REPO_DIR>/AGENTS.md |
~/.codex/AGENTS.md |
| Cursor | <REPO_DIR>/AGENTS.md<REPO_DIR>/.cursor/rules/AGENTS.md |
~/.cursor/rules/*.md |
| CopilotChat | <REPO_DIR>/.github/copilot-instructions.md |
~/Library/Application Support/Code/User/prompts/*.instructions.md |
| Cline | /.clinerules/*.md |
~/Documents/Cline/Rules/*.md |
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
| { | |
| "agents": [ | |
| "claude-code", | |
| "gemini-cli" | |
| ], | |
| "mcpServers": { | |
| "markdownit": { | |
| "command": "docker", | |
| "args": [ | |
| "run", |
The ECS External Monitoring System is a serverless, cost-efficient solution that performs automated health checks on external services. The system uses AWS ECS Fargate scheduled tasks to run TypeScript-based monitoring code, stores configurations in S3, manages secrets through AWS Secrets Manager, and provides comprehensive alerting through multiple channels. The architecture is designed to scale efficiently to hundreds of monitoring targets while maintaining low operational costs.
graph TB
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
| #!/bin/sh | |
| # https://learn.microsoft.com/ja-jp/azure/ai-foundry/openai/reference | |
| API_VERSION=2024-10-21 | |
| curl -s "${AZURE_OPENAI_ENDPOINT}/openai/deployments/${AZURE_OPENAI_DEPLOYMENT_NAME}/chat/completions?api-version=${API_VERSION}" \ | |
| -H "Content-Type: application/json" \ | |
| -H "api-key: ${AZURE_OPENAI_API_KEY}" \ | |
| -d "{ | |
| \"messages\":[ |
NewerOlder