Skip to main content
Kaikei-e
GitHub 제작자 프로필

Kaikei-e

5개 GitHub 저장소에서 수집된 63개 skills를 저장소 단위로 보여줍니다.

수집된 skills
63
저장소
5
업데이트
2026-07-31
저장소 탐색

저장소와 대표 skills

tdd-workflow
소프트웨어 품질 보증 분석가·테스터

Drive Alt changes test-first in outside-in order — E2E (Playwright/Hurl) → CDC (Pact) → Unit (RED-GREEN-REFACTOR) — and close with a local CI parity sweep (format/lint/type/security) for every touched microservice. Use when implementing a feature, fixing a bug, or refactoring, when deciding what test to write first, or when the user says "TDDで". Also use before declaring work complete, since "tests pass" is not "CI will pass".

2026-07-31
alt-adr-writer
소프트웨어 개발자

Alt の Architecture Decision Record を日本語で `docs/ADR/NNNNNN.md` に書き起こす。番号採番、frontmatter(title/date/status/tags/affected_services/aliases/supersedes)、Context・Decision・Consequences の書き分け、wikilink 形式、OSS 公開向けの情報衛生を扱う。実装が一段落して決定を記録するときに使う。ユーザが「ADR書いて」「ADRにまとめて」「ADRに記録して」「実装が終わったのでドキュメントに」と言ったとき、または設計上の判断を伴う変更を終えたときに使う。

2026-07-31
grill-with-docs
프로젝트 관리 전문가

Interrogate a plan against the project's documented decisions and domain language — challenging fuzzy terms, cross-referencing the code, and surfacing where the plan contradicts an existing ADR or canonical contract. Use when the user wants a plan stress-tested against what the project has already decided, rather than in the abstract. Prefer plain grill-me when there is no documented model to test against, and plan-context-loader when the goal is to gather vault context rather than be questioned.

2026-07-31
improve-codebase-architecture
소프트웨어 개발자

Hunt for deepening opportunities — shallow modules whose interface costs as much to learn as their implementation saves — and present them as a visual before/after report, informed by the decisions already recorded in docs/ADR/. Use when the user wants to improve architecture, find refactoring opportunities, consolidate tightly-coupled modules, reduce the cost of understanding a subsystem, or make code more testable. Use clean-architecture instead when the question is whether a specific change violates Alt's layer rules.

2026-07-31
plan-context-loader
프로젝트 관리 전문가

設計・計画タスク時に、Obsidian vault から関連 ADR・contract・review・runbook を 必要最小限だけ集めて計画の精度を上げる。 次のときに使う: - 「計画を立てて」「設計して」「プランを作って」 - ADR や過去の決定を確認したい - Knowledge Trail / Knowledge Home や reproject-safe / immutable 設計が絡む

2026-07-31
bp-go
소프트웨어 개발자

Alt の Go 規約を適用する。エラーラップ、context 第一引数、slog、テーブル駆動テスト、http.Server の 4 タイムアウト、Redis Streams の XACK/XAUTOCLAIM 対、fail-fast 設定を扱う。Go のコードを書く・直す・レビューするときに使う。ユーザが「Go」や規約名に触れなくても、Go サービス(alt-backend, auth-hub, pre-processor, search-indexer, mq-hub, rag-orchestrator, altctl)の実装・修正に入るなら使う。

2026-07-27
bp-python
소프트웨어 개발자

Alt の Python 3.14+ 規約を適用する。型ヒント必須と Pyrefly、具体例外と原因チェーン、Pydantic/frozen dataclass の境界保護、asyncio と同期推論の分離、spawn プロセスプール、起動時 fail-closed を扱う。Python のコードを書く・直す・レビューするときに使う。ユーザが「Python」や規約名に触れなくても、Python サービス(news-creator, tag-generator, metrics, recap-subworker, recap-evaluator, acolyte-orchestrator)の実装・修正に入るなら使う。

2026-07-27
bp-rust
소프트웨어 개발자

Alt の Rust Edition 2024 規約を適用する。thiserror でのドメインエラー、借用優先、tokio + tracing、配線失敗を握り潰さない、flush タスクの JoinHandle 保持、char boundary 安全な切り詰め、リトライ境界でのエラー型保持、libtorch 常駐時の jemalloc を扱う。Rust のコードを書く・直す・レビューするときに使う。ユーザが「Rust」や規約名に触れなくても、Rust サービス(rask-log-aggregator, rask-log-forwarder, recap-worker)の実装・修正に入るなら使う。

2026-07-27
이 저장소에서 수집된 skills 23개 중 상위 8개를 표시합니다.
plecto-architecture
소프트웨어 개발자

Plecto's core architecture — the two halves (native-Rust fast path / WASM extension plane), the WIT type contract between them, the deny-by-default capability boundary, the filter chain, typed decision/short-circuit, init vs per-request hooks, instance lifecycle, and host-held state.

2026-07-13
security-auditor
정보 보안 분석가

Audits code for security vulnerabilities using OWASP Top 10:2025, OWASP ASVS 5.0, and the OWASP Secure Code Review Cheat Sheet, with Plecto-specific dimensions: WASM sandbox / capability boundary (deny-by-default, epoch metering, CVE-2022-39393 pooling leakage, OCI signature verification, untrusted multi-tenant filters) and L7 proxy / gateway risks (SSRF on upstream construction, TLS termination, request smuggling/splitting, header injection, rate-limit/WAF bypass). Produces a structured findings report (severity + OWASP/CWE/ASVS mapping + evidence + remediation).

2026-07-13
wasmtime-host
소프트웨어 개발자

Best practices for embedding wasmtime as Plecto's host: InstancePre + pooling allocator for fast per-worker instance reuse, epoch interruption + memory limits for metering, Linker-based deny-by-default host functions, Store-per-request lifecycle, async host calls, pooling zeroization (CVE-2022-39393), and OCI-artifact load + cosign signature verification.

2026-07-13
wit-contract-design
소프트웨어 개발자

Design and evolve Plecto's `plecto:filter` WIT world and host-API surface — the type contract between the native fast path and untrusted WASM filters. Covers worlds/interfaces, resources, the decision variant, minimal-capability host-API slicing, header bytes (list<u8>), the filter / filter-body world split (header-only vs buffered body), versioning/compat with frozen v0.1/v0.2 load-time adapters, and the projected stream<u8> + wasm32-wasip2 migration.

2026-07-13
bp-rust
소프트웨어 개발자

Rust ベストプラクティス。Plecto の fast path(native Rust)と wasmtime ホスト埋め込みの コード品質を保つ規約とパターン集(Edition 2024)。

2026-07-13
bp-typescript
소프트웨어 개발자

TypeScript / JavaScript ベストプラクティス。型安全性とコード品質を保つ規約。 Plecto では (1) Node ツーリング・統合テスト・wasm-bindgen の node_pkg 周り、 (2) jco / componentize-js で書く JS/TS 製 WASM フィルタ、の二用途に効く。

2026-07-13
full-review
소프트웨어 품질 보증 분석가·테스터

Runs an adversarial full review of a merge commit, PR, or branch range (AI-authored or not): Builder/Critic session separation, Spec+Diff-only critic input, parallel critic lanes (correctness, security, tests/CI), evidence-gated findings, and a structured merge verdict.

2026-07-13
improve-codebase-architecture
소프트웨어 개발자

Find deepening opportunities in the codebase, informed by the domain language in CONTEXT.md, the project's design tenets, and the decisions in docs/ADR/. Use when the user wants to improve architecture, find refactoring opportunities, consolidate tightly-coupled modules, or make the codebase more testable and AI-navigable — or says 「アーキテクチャ改善」「リファクタの種を探して」「設計を深く」.

2026-07-13
이 저장소에서 수집된 skills 16개 중 상위 8개를 표시합니다.
s4rciv-postmortem-writer
소프트웨어 개발자

Writes a blameless incident postmortem for the s4rCiv project in Japanese, grounded in the real timeline, commits, and logs (never speculation). Use when the user says "ポストモーテム書いて" / "障害報告書いて" / "事後検証" / "incident report" / "RCA" / "根本原因", or after an incident, outage, data-integrity scare, or a committed bug fix worth a durable record. Authoring only — no deploy.

2026-06-06
bp-go
소프트웨어 개발자

Go ベストプラクティス。Go コードの品質を保つための規約とパターン集。

2026-06-02
bp-python
소프트웨어 개발자

Python ベストプラクティス。Python コードの品質を保つための規約とレビュー観点(Python 3.14+)。

2026-06-02
bp-rust
소프트웨어 개발자

Rust ベストプラクティス。Rust コードの品質を保つための規約とパターン集(Edition 2024)。

2026-06-02
bp-svelte
소프트웨어 개발자

Svelte 5 & SvelteKit ベストプラクティス。Svelte 5 Runes ベースのコンポーネント設計規約。

2026-06-02
bp-typescript
소프트웨어 개발자

TypeScript ベストプラクティス。型安全性とコード品質を保つための規約。

2026-06-02
clean-architecture
소프트웨어 개발자

Clean Architecture layer patterns (Handler → Usecase → Port → Gateway → Driver), mapped to s4rCiv's adapter model and observation/interpretation plane separation. Use when implementing or reviewing layered backend code (source adapters, normalizer, read models, CQRS).

2026-06-02
docker-compose
네트워크·컴퓨터 시스템 관리자

Docker Compose command reference for the s4rCiv local stack (root compose.yaml, project name s4rciv). Services: db (Postgres), migrate (Atlas), api (Go), differ (Rust), web (SvelteKit). Use when running, restarting, or inspecting s4rCiv containers locally, or applying migrations.

2026-06-02
이 저장소에서 수집된 skills 13개 중 상위 8개를 표시합니다.
bp-rust-wasm
소프트웨어 개발자

Rust ベストプラクティス(Plecto WASM フィルタ向け、Edition 2024)。plecto:filter WIT コントラクトを実装する WASM Component Model フィルタの規約とツールチェーン。

2026-07-21
grill-with-docs
소프트웨어 개발자

Grilling session that challenges your plan against moka-1's documented design decisions (tenets, ADRs) and domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when the user wants to stress-test a plan against the project's language and documented decisions, or says 「設計を詰めて」「用語を固めて」「ドキュメントと突き合わせて」.

2026-07-03
clean-architecture
소프트웨어 개발자

クリーンアーキテクチャの依存ルールを moka-1 のミニマリズム制約下で適用する指針。レイヤ分割・interface 設計・依存方向の判断基準と、過剰抽象化を避けるガードレールを提供する。

2026-07-03
web-research
시장조사 분석가·마케팅 전문가

Web調査の方法論。一次ソース(RFC・公式仕様・公式ドキュメント・原論文・ソースコード)を最優先し、検索クエリの多角化・横断的検証(lateral reading)・独立ソースでの三角測量を経て、出典付きで報告する手順。

2026-07-03
docker-compose
네트워크·컴퓨터 시스템 관리자

moka-1 スタックの Docker Compose 操作と compose.yaml の書き方。ワンキック起動・開発ループ・ヘルスチェック・開発機(iGPU/Vulkan)固有設定・トラブルシュート。

2026-07-02
bp-go
소프트웨어 개발자

Go ベストプラクティス(moka-core 向け、Go 1.26+)。常駐エージェントループ・LLM クライアント・フィード取得を含む moka-core の実装規約。

2026-07-02
bp-python
소프트웨어 개발자

Python ベストプラクティス(eval/ 専用、Python 3.14 + uv + Pyrefly + Ruff)。モデル A/B・プロンプト評価スクリプトの規約と再現性の作法。

2026-07-02
bp-svelte
웹 개발자

Svelte 5 / SvelteKit / TypeScript ベストプラクティス(moka-web 向け)。Runes ベースのコンポーネント設計、SvelteKit データフロー、型安全性の規約。

2026-07-02
이 저장소에서 수집된 skills 10개 중 상위 8개를 표시합니다.
저장소 5개 중 5개 표시
모든 저장소를 표시했습니다