This intensive program is built for experienced engineers who've outgrown AI as a glorified search engine. The course focuses on one thing: embedding Claude into the real development workflow – not as a tool you consult, but as an active collaborator. You'll move from copy-paste habits to full agentic development using Claude Code and the Model Context Protocol and come out the other side with a fundamentally different relationship to how software gets built.
-
עמוד הביתקורסים ואירועיםקורסים מקצועיים למתקדמיםClaude Code for Software Engineers
למה ללמוד בג'ון ברייס?
- למידה חדשנית ודינמית עם כלים מתקדמים בשילוב סימולציות, תרגול וסביבות מעבדה
- מגוון הכשרות טכנולוגיות עם תכנים המותאמים להתפתחות הטכנולוגית ולביקוש בתעשיית ההייטק
- מובילים את תחום ההכשרות לעולם ההייטק והטכנולוגיה כבר 30 שנה, עם קהילה של עשרות אלפי בוגרים
- אתם בוחרים איך ללמוד: פרונטאלית בכיתה, מרחוק ב- Live Class או בלמידה עצמית
המועדים הקרובים
קורס לארגונים בלבד
ניתן להזמין את הקורס במתכונת של קבוצה מארגון בלבד, בהתאמה אישית לצורך המקצועי ובלו"ז מותאם.
לפרטים נוספים: [email protected]
משך הקורס
שעות לימוד:
16
מספר מפגשים:
קורס בוקר:
2
מתכונת הקורס
- מרצים מומחים ומנוסים מהתעשייה
- למידה מתקדמת בהתאמה אישית
- התפתחות ושדרוג מקצועי
- חוויית למידה חדשנית ומקיפה
- ליווי וייעוץ מקצועי
- חומרי לימוד ייחודיים ובלעדיים
Overview
Learning Outcomes

Operate Claude Code end-to-end from the CLI - installation, permission tiers, slash commands, and multi-step agentic workflows

Architect and configure CLAUDE.md and the .claude directory to give Claude persistent, project-aware context

Deploy and secure MCP servers to connect Claude to internal APIs, databases, Google Drive, Jira, Slack, and legacy systems

Build custom Skills and sub-agent patterns to package team workflows like /review-pr, /deploy-staging, and /security-audit

Integrate Claude into Git, CI/CD, and PR review pipelines for automated commit messages, failure diagnosis, and log analysis

Apply token-efficiency strategies, context-window management, and prompt injection defences in production AI workflows
Who Should Attend?

Developers with a professional background

Experienced software engineers
Course Content
Establish the agentic development foundation. This session is CLI-first: you'll install and configure Claude Code, understand how the agentic loop works under the hood, and build the project-memory structures that make Claude genuinely useful across a codebase.
1.1 Claude Models & the Agentic Loop
- Claude model families: Haiku (speed), Sonnet (balance), Opus (reasoning) when to choose which
- The agentic loop in depth: Explore → Plan → Code → Test → Commit
- Extended Thinking: activating hybrid reasoning for architectural decisions and complex refactors
- How Claude Code differs from chat interfaces: persistent context, file I/O, and shell execution
1.2 Claude Code CLI — Installation & Core Usage
- Installation, authentication (OAuth and API key), and permission tiers
- Essential slash commands: /help, /compact, /memory, /cost, /clear, /model
- Permission modes: Approval Mode vs. Auto-accept – practical security boundaries
- Multi-step workflows: scaffolding a new service, tracing a bug across 10 files
- Reading and writing files, running tests, executing shell commands from within Claude Code
1.3 Context & Project Memory
- claude/ directory: session state, project-level config, and tool cache
- md deep dive: encoding architecture decisions, linting rules, and team conventions
- Context window management: right-sizing prompts, /compact, and avoiding token bloat
- Multi-file context strategies: when to use #file, when to let Claude explore autonomously
Lab: Bootstrap a real repo with CLAUDE.md, run a multi-step bug-fix workflow, and compare output quality with and without structured project memory.
MCP is the interface layer between Claude and every tool in your stack. This session covers the full MCP architecture, connecting Claude to real data sources, and writing your own MCP server to expose internal APIs.
2.1 Claude Desktop for Power Users
- Desktop vs. Web UI: filesystem access, local shell execution, and persistent sessions
- Parallel development streams: multiple Git-isolated contexts running simultaneously
- Integrated preview: running and verifying apps directly in the Claude interface
2.2 MCP Architecture
- Hosts, Clients, and Servers – the three-layer model explained
- Transport options: stdio (local) vs. HTTP+SSE (remote) when to use each
- json: structure, security hardening, and secrets management
- Built-in MCP servers: filesystem, bash, fetch, and the editor integration
2.3 Connecting Claude to Your Stack
- Wiring up Google Drive, Jira, Slack, and PostgreSQL via community MCP servers
- Token efficiency: loading tool definitions on demand rather than stuffing the initial context
- Code execution via MCP: sandboxed runtimes that return only the results Claude needs
2.4 Building a Custom MCP Server
- Server skeleton: defining tools, resources, and prompts in TypeScript or Python
- Exposing an internal REST API as an MCP tool Claude can call autonomously
- Security: input validation, rate limiting, and preventing prompt injection via tool results
Lab: Build a custom MCP server that wraps an internal API endpoint. Connect it to Claude Desktop and demonstrate Claude autonomously querying live data to answer a developer question.
Package your hard-won knowledge into reusable Skills, delegate work to sub-agents, and wire Claude into Git and CI/CD so routine engineering tasks run themselves.
3.1 Claude Skills
- What a Skill is: a markdown instruction file Claude loads on demand
- Anatomy of a production Skill: trigger pattern, tool hints, output contract, examples
- Team workflow Skills: /review-pr (style + logic), /deploy-staging, /security-audit
- Skill versioning and the skills/ directory convention
3.2 Sub-Agents
- When to spawn a sub-agent vs. keep work in the main session
- Task file pattern: writing structured task.md files Claude can pick up and execute
- Parallel sub-agents: running independent analysis tasks concurrently
- Output aggregation: merging sub-agent results back into the main context
3.3 AI-Driven Git & CI/CD
- Automating commit messages, branch naming, and PR descriptions from diff context
- PR monitoring: Claude watches CI failures and proposes targeted fixes
- Log piping: feeding build or runtime logs directly into Claude for anomaly detection
- GitHub Actions integration: triggering Claude Code as a CI step
Lab: Write a /review-pr Skill, spawn a sub-agent to audit a module for security issues in parallel, and set up a GitHub Action that runs Claude on every failing CI build.A
AI in production requires the same rigour as any critical dependency. This session closes the loop on the failure modes that matter allucinations, prompt injection, data exposure, and cost governance.
4.1 Identifying & Mitigating Hallucinations
- Why LLMs fabricate – understanding confidence vs. correctness
- Verification patterns: always run generated code, always read generated diffs
- Grounding strategies: pinning Claude to real file contents and tool outputs
4.2 Prompt Injection & Data Security
- Prompt injection via MCP tool results: attack surface and mitigations
- Handling secrets: environment variables, secret managers, and what never goes in CLAUDE.md
- PII and sensitive data: redaction strategies before context reaches the model
- Permission principle of least privilege for MCP servers
4.3 Cost & Context Governance
- Reading /cost output and understanding token billing
- Context window budgeting: when to /compact, when to start a fresh session
- Model selection for cost: routing heavy tasks to Opus, routine tasks to Haiku
Practical software development experience
Familiarity with using the command-line interface (CLI)
Familiarity with core development workflows
An active Claude (Pro) account is required.
יכול לעניין אותך גם...
קורסים ואירועים נוספים בתחום
270 שעות אקדמאיות
קורס הנהלת חשבונות סוג 1+2 בכיר משלב אינטגרציה מלאה של כלי בינה מלאכותית (AI) ואוטומציה החדשניים ביותר בעולם הפיננסי, ביניהם...
40 שעות אקדמאיות
מטרת הקורס הינה, להכשיר אנשי NOC באמצעות הקניית ידע בתשתיות IT, תקשורת ארגונית וכלי ניטור. הקורס מקנה הבנה מעשית של...
16 שעות אקדמאיות
רוב המנהלים למדו על AI. מעטים בנו אחד. ארגונים שמנצחים בעידן ה-AI לא עובדים יותר קשה – הם בונים מנגנון...
16 שעות אקדמאיות
רוב המנהלים למדו על AI. מעטים בנו אחד. ארגונים שמנצחים בעידן ה-AI לא עובדים יותר קשה – הם בונים מנגנון...
220 שעות אקדמאיות
פלטפורמת Salesforce CRM הינה המערכת המובילה והנפוצה ביותר לניהול לקוחות, ומאפשרת לארגונים לנהל בצורה יעילה מידע על לקוחות, להפיק דוחות...
40 שעות אקדמאיות
קורס "בניית אסיסטנט ארגוני" מעניק למשתתפים הבנה תיאורטית עמוקה לצד כלים מעשיים לבנייה והטמעה של סוכני AI ואסיסטנטים ארגוניים, ללא...
16 שעות אקדמאיות
This intensive program is built for experienced engineers who've outgrown AI as a glorified search engine. The course focuses on...
AWS Skill Builder is the most comprehensive cloud training solution available, designed to make learning an integral part of organizational...
40 שעות אקדמאיות
מתודולוגיית ה-Vibe Coding, מאפשרת בניית מוצרים דיגיטליים ללא צורך בידע מוקדם בכתיבת קוד, באמצעות ניהול והנחיה נכונה של כלי בינה...
616 שעות אקדמאיות
עולם המשחקים הדיגיטליים משתנה במהירות. כלי בינה מלאכותית כמו ChatGPT, Midjourney, GitHub Copilot וכלי GenAI נוספים מאפשרים כיום לפתח רעיונות,...
40 שעות אקדמאיות
The 5-day, hands-on course, is designed for software developers familiar with Node.js or Python. The program moves from a foundation...
רוצה עוד מידע על קורס בהתאמה אישית לארגון שלך?
נשמח לייעץ, ללוות ולענות על כל השאלות
ניהול הגדרות פרטיות
באתר זה נעשה שימוש בטכנולוגיות איסוף מידע כגון Cookies, לרבות על ידי צדדים שלישיים, כדי לספק לך חווית גלישה טובה יותר וכן למטרות סטטיסטיקה, אפיון ופרסום.
המשך הגלישה באתר מהווה את הסכמתך לכך. מידע נוסף ואפשרויות לניהול השימוש באמצעים אלה נכללים במדיניות הפרטיות.
פונקציונליות
Always active
האחסון הטכני או הגישה הכרחיים באופן מוחלט למטרה הלגיטימית של לאפשר שימוש בשירות ספציפי שביקש המנוי או המשתמש באופן מפורש, או למטרה הבלעדית של ביצוע העברת תקשורת ברשת תקשורת אלקטרונית.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
סטטיסטיקה
האחסון הטכני או הגישה משמשים אך ורק למטרות סטטיסטיות אנונימיות.
The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
שיווק
האחסון הטכני או הגישה נדרשים ליצירת פרופילי משתמשים כדי לשלוח פרסום מותאם אישית, או כדי לעקוב אחרי המשתמש באתר זה או במספר אתרים למטרות שיווק דומות.