원클릭으로
wiki-ingest
Append a source (spec / decision / chat / pr / learning) into a vault's llm-curated/ tree. Refuses writes into frozen paths.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Append a source (spec / decision / chat / pr / learning) into a vault's llm-curated/ tree. Refuses writes into frozen paths.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Plan and create a NESTED team hierarchy (parent coordination team + per-stream child teams) for a complex multi-stream goal. Use INSTEAD of recommend-team/materialize-team when the goal names 2+ parallel work-streams (e.g. frontend + backend + DevOps). Onboarding-only.
Search the live web for a query and return ranked results (title, URL, snippet) as JSON. Works with no API key (DuckDuckGo HTML fallback) and uses the Brave Search API or SerpAPI automatically when BRAVE_API_KEY / SERPAPI_KEY is set. Any agent can call it for research, competitor analysis, market/trend lookups, fact-checking, finding sources to cite, or grounding a non-software goal (marketing, growth, commerce) in real-world information.
Transcribe a local audio (or video) file to text with timestamps using Whisper. Defaults to local whisper.cpp (free, offline, word/segment-level timestamps) and automatically falls back to the OpenAI Whisper API (whisper-1) when the local engine is not installed. Any agent can call it for meetings, podcasts, voice notes, interviews, or video audio tracks.
Accept and take the next available task from the task queue. Use when an agent is idle and ready to pick up the highest-priority unassigned task. For assigning tasks to specific agents, use assign-task instead.
Register the agent as active with the Crewly backend on startup. Use when an agent first launches and needs to join the team and become visible to the orchestrator. For confirming responsiveness after registration, use heartbeat instead.
Analyze git changes and produce a structured code review with automated checks for missing tests, debug statements, potential secrets, large changes, and dependency modifications. Use when reviewing staged changes, unstaged diffs, recent commits, or branch comparisons before submitting a pull request. For task-level quality gates, use check-quality-gates instead.
| name | Wiki Ingest |
| description | Append a source (spec / decision / chat / pr / learning) into a vault's llm-curated/ tree. Refuses writes into frozen paths. |
| version | 1.0.0 |
| category | knowledge |
| skillType | claude-skill |
| assignableRoles | ["orchestrator","team-leader"] |
Append a source to a vault's llm-curated/log.md (default) or to a dedicated page under llm-curated/ (via --target). Per Atlas v2.1 §2 + §3.
The chat subscriber already auto-ingests every user→ORC chat message; this skill is for explicit manual ingest:
llm-curated/decisions/<date>-<slug>.md~/.crewly/global-wiki/llm-curated/record-learning-style pattern page| Flag | Required | Description |
|---|---|---|
--vault <path> | yes | Absolute vault root (must contain SCHEMA.md). |
--source-type <t> | yes | One of: user_chat, slack_message, spec_file, pr_merge, record_learning, task_verified. |
--source-ref <ref> | yes | Stable reference for audit (URL, file path, message id, …). |
--source-body <text> | yes | Body content to ingest. |
--caller <sess> | no | Session/user that authored the source (defaults to source-ref). |
--target <relpath> | no | Override the default llm-curated/log.md. Must NOT be inside a frozen folder. |
{
"success": true,
"result": {
"ok": true,
"pagesWritten": ["llm-curated/log.md"],
"logEntry": "## [ISO] sourceType | caller ...",
"frozenPathsTouched": []
}
}
422 frozen_path — target lives under a hardcoded: (frozen) folder. The outcome.frozenFolders field lists every frozen path in the vault.404 schema_missing — vault has no SCHEMA.md.400 invalid_input | empty_body — missing/invalid args.bash execute.sh \
--vault ~/.crewly/teams/ad923b66-19dd-4d73-9c92-dc1107d37501/wiki \
--source-type user_chat \
--source-ref slack://thread/D0ABC/1779363330.313849 \
--source-body "Pricing locked at \$999 setup + \$799/month." \
--caller user/steve \
--target llm-curated/decisions/2026-05-22-crewly-pro-pricing.md