بنقرة واحدة
camel-knowledge
Look up Camel documentation, components, CVEs/security advisories, and versions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Look up Camel documentation, components, CVEs/security advisories, and versions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Design and plan Camel integrations through collaborative dialogue.
Internal reference skill — loaded by camel-brainstorm during flow design. Contains guides for component selection, EIP catalog, data formats, integration patterns, and design spec assembly. NOT user-invocable.
Execute an approved implementation plan with two-stage review.
Internal reference skill — loaded by camel-execute during implementation tasks. Contains guides for YAML generation, component loading, properties, Docker Compose, DataMapper, and route validation. NOT user-invocable.
Migrate an existing integration from another product to Apache Camel
Break a design spec into implementation tasks with wave analysis.
| name | camel-knowledge |
| description | Look up Camel documentation, components, CVEs/security advisories, and versions. |
| user_invocable | false |
Invocable standalone via
/camel-knowledgeor loaded by pipeline skills for documentation lookup.
/camel-execute instead/camel-validate instead/camel-brainstorm for design work; this skill answers factual questionsProvides access to Apache Camel documentation via MCP knowledge tools. Used during:
The generated MCP allowlist is defined in workflow/camel-kit-workflow.yaml under the camel-knowledge MCP server. Keep this table aligned with that manifest.
| Tool | Purpose | When to Use |
|---|---|---|
camel_docs_search | General documentation search | Migration guides, getting started, EIP patterns, general questions |
camel_docs_component_info | Component documentation and CVE lookup | Verify component exists, get configuration reference, check security |
camel_docs_cve_search | CVE security advisory search | Security review, vulnerability check by CVE ID, component, or severity |
camel_docs_release_info | Release notes for a version | Version selection, understanding what changed |
camel_docs_jira_lookup | JIRA issue lookup by ID | Find which release fixed a specific issue |
camel_docs_component_info(component="kafka", version="4.14")
Returns availability status.
camel_docs_cve_search(cve_id="CVE-2024-22369")
camel_docs_cve_search(component="sql", severity="HIGH")
camel_docs_search(query="migrating from Camel 3 to Camel 4.14", version="4.14", max_results=5)
camel_docs_jira_lookup(jira_id="CAMEL-22784")
When invoked from within another skill (not standalone), the orchestrator should dispatch knowledge queries as a knowledge-researcher subagent (from agents/knowledge-researcher.md). This keeps full MCP search results out of the orchestrator context — only the synthesized answer flows back.
Standalone invocation (/camel-knowledge): runs inline in the current context.
Pipeline invocation (from camel-brainstorm, camel-execute, etc.): dispatch as subagent:
knowledge-researcher persona (full text from agents/knowledge-researcher.md)agents/knowledge-researcher.md output format) flows backThis pattern prevents ~2000-5000 tokens of raw search results per query from accumulating in the orchestrator context. For a migration brainstorm with 5-10 knowledge lookups, this saves 10,000-50,000 tokens.
max_results=5 unless more results are needed