원클릭으로
company-kb
company-kb — Company Knowledge Base Skill. Use when relevant to this domain.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
company-kb — Company Knowledge Base Skill. Use when relevant to this domain.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Enforce staged execution discipline on large tasks: written stage plan, parallel sub-agent delegation, failable verification at each stage, and skeptical self-review before delivery. Use when tasks span multiple files, multiple sources, or multiple sessions. Also triggers on "do this thoroughly", "be systematic", "deep work mode", "be thorough".
Write production-quality code from specs — reads requirements, researches patterns, implements with tests, and iterates until verification passes. Use when implementing features, fixing bugs with known root causes, or building new modules.
Ship code to production through a controlled pipeline with verification gates and rollback plans. Use when deploying features, managing CI/CD, running database migrations, or performing post-incident hotfix recovery.
Investigate topics deeply with cross-referenced sources and produce evidence-backed findings. Use when evaluating technologies before adoption, analyzing competitors, or investigating bug root causes across docs and issues.
Read code changes with adversarial intent to find bugs, security holes, logic errors, and performance traps. Use when reviewing PRs, auditing refactoring for regressions, or running pre-deploy safety checks.
Detect and fix code style violations, enforce project conventions, and ensure consistent formatting across the codebase. Use when cleaning lint errors before PRs, migrating linters, or bulk-applying new rules.
| name | company-kb |
| description | company-kb — Company Knowledge Base Skill. Use when relevant to this domain. |
| domain | core |
| tags | ["company","infrastructure","memory","self-improvement"] |
| persona | {"name":"Domain Expert","title":"Master of Company Kb","expertise":["Core Excellence","Best Practices","Professional Standards"],"philosophy":"Excellence is not a skill, it's an attitude.","credentials":["Industry leader","Practiced professional","Thought leader"],"principles":["Quality first","Continuous improvement","Evidence-based","Customer focused"]} |
Trigger phrases:
"company kb"
"User asks about company info, procedures, history, products, team"
"Agent needs to look up internal documentation"
"Storing new company knowledge for future recall"
User asks about company info, procedures, history, products, team
Agent needs to look up internal documentation
Storing new company knowledge for future recall
Paijo asks about anything related to BerkahKarya operations
Company Kb is a foundational core infrastructure skill that provides system foundation capabilities for the agent ecosystem.
| Rationalization | Reality |
|---|---|
| "I will add monitoring later" | Without monitoring, you cannot detect failures. Add it from day one. |
| "One model is enough" | Different tasks need different models. Route intelligently. |
| "Premature optimization" | Infrastructure decisions are hard to change later. Design for scale early. |
# Example: Model routing
ROUTES = {
"code": ["claude-sonnet-4-20250514", "gpt-4o"],
"vision": ["gemini-2.5-pro", "gpt-4o"],
"fast": ["gemini-2.5-flash", "gpt-4o-mini"],
}
def route_request(task: str, prompt: str):
models = ROUTES.get(task, ROUTES["fast"])
for model in models:
try:
return call_model(model, prompt)
except Exception:
continue
raise RuntimeError("All models failed")