Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/classmethod/tsumiki/tech-stackgit clone --depth 1 https://github.com/classmethod/tsumikiWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.01188 |
| Opus 5 | $0.00000 | $0.00594 |
| Sonnet 5 | $0.00000 | $0.00238 |
| Haiku 4.5 | $0.00000 | $0.00119 |
Grade A, and why
tech-stack scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
デフォルト技術スタック定義
プロジェクト専用の技術スタック定義ファイルが見つからない場合に使用されるデフォルト定義です。
優先順位
- プロジェクト専用:
docs/tech-stack.md - プロジェクト共通:
CLAUDE.mdの技術スタックセクション - デフォルト: この定義ファイル
デフォルト技術スタック
フロントエンド
- フレームワーク: React 18+ または Vue 3+ または Next.js
- 言語: TypeScript 5.0+
- 状態管理: Redux Toolkit または Zustand または Pinia
- UIライブラリ: Material-UI または Tailwind CSS または shadcn/ui
- バンドラー: Vite または Webpack
バックエンド
- フレームワーク: Express.js または Fastify または Next.js API Routes
- 言語: TypeScript 5.0+ または JavaScript ES2022+
- データベース: PostgreSQL 15+ または MySQL 8+ または SQLite
- ORM: Prisma または TypeORM または Drizzle
- 認証: JWT または NextAuth.js
キャッシュ・セッション
- キャッシュ: Redis 7+ または Memcached
- セッション: Redis または MemoryStore
開発環境
- コンテナ: Docker + Docker Compose
- パッケージマネージャー: npm または yarn または pnpm
- Node.js: 18+ LTS
開発ツール
- テストフレームワーク: Jest または Vitest
- テストライブラリ: Testing Library または Playwright
- リンター: ESLint + Prettier
- 型チェック: TypeScript
- CI/CD: GitHub Actions または GitLab CI
デプロイ・インフラ
- フロントエンド: Vercel または Netlify または Cloudflare Pages
- バックエンド: Railway または Heroku または AWS または GCP
- データベース: PostgreSQL (管理型) または自己管理
- CDN: Cloudflare または AWS CloudFront
API設計
- アーキテクチャ: RESTful API または GraphQL
- ドキュメント: OpenAPI/Swagger または GraphQL Schema
- 認証方式: Bearer Token (JWT) または API Key
データ管理
- データベース設計: 正規化 + 必要に応じて非正規化
- マイグレーション: Prisma Migrate または TypeORM Migrations
- バックアップ: 自動バックアップ推奨
セキュリティ
- HTTPS: 必須
- CORS: 適切な設定
- 認証: JWT + Refresh Token パターン
- バリデーション: サーバーサイドバリデーション必須
- 環境変数: 機密情報の適切な管理
パフォーマンス要件
- API応答時間: 3秒以内
- フロントエンド初期表示: 2秒以内
- データベースクエリ: インデックス最適化
- キャッシュ戦略: 適切なTTL設定
品質基準
- テストカバレッジ: 80%以上推奨
- コード品質: ESLint + Prettier
- 型安全性: TypeScript strict mode
- アクセシビリティ: WCAG 2.1 AA準拠推奨
ディレクトリ構造(推奨)
project/
├── docs/ # ドキュメント
│ ├── spec/ # 要件定義
│ ├── design/ # 設計文書
│ └── tasks/ # タスク管理
├── src/ # ソースコード
│ ├── components/ # UIコンポーネント
│ ├── services/ # ビジネスロジック
│ ├── types/ # 型定義
│ └── utils/ # ユーティリティ
├── tests/ # テストファイル
├── prisma/ # データベーススキーマ
├── docker-compose.yml # 開発環境
└── package.json # 依存関係
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 105 lines · 0 tokens per session scan A 50b2eff18e58
tech-stack is a command published in the GitHub repository classmethod/tsumiki (974 stars, last pushed 25d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,188 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.