원클릭으로
career-search
Search job boards, scan company portals, and track applications.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Search job boards, scan company portals, and track applications.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Dual-model adversarial review: local and delegated reviewers audit independently, verdicts are synthesized.
Implement the SDD task list. Read tasks and design from memory, write code, run tests.
Archive all SDD artifacts for a change as a single completed record in memory.
Write the technical design for a planned change: components, interfaces, data flows, edge cases.
Explore the codebase to build context for a planned change. First phase of the SDD workflow.
Propose 2–3 solution approaches for a planned change, evaluating trade-offs and recommending one.
| name | career-search |
| description | Search job boards, scan company portals, and track applications. |
| compatibility | opencode |
| when_to_use | When the user wants to search for jobs or track applications. |
| model | medium |
| user-invocable | false |
| hub-skill-ids | ["career-intelligence","search"] |
| allowed-tools | ["Bash","WebFetch"] |
Search job boards and track applications using the ChromaDB episodic memory.
tavily MCP if configured) or direct HTTP to search job boardspython-jobspy package)Use episodic memory to track applications:
from fu7ur3pr00f.memory.episodic import remember_application, get_episodic_store
remember_application(company="Acme Corp", role="Senior Engineer", status="applied", notes="...")
store = get_episodic_store()
results = store.recall("machine learning engineer")
Use ChromaDB to query by status:
store = get_episodic_store()
results = store.recall("", memory_type=MemoryType.APPLICATION, limit=50)