Lesson 4: Advanced Questions

Questions you should ask to deepen your understanding as an AI engineer

You asked: "What are the other important questions I am missing?" This lesson covers 10 advanced questions that will take you from understanding the basics to true mastery.

The 10 Questions for Deep Mastery

These questions go beyond the fundamentals. Each one opens a domain of investigation:

1. Performance Overhead: Sandbox vs Local

The Question

What is the latency impact of the sandbox-as-tool pattern versus local execution?

Why It Matters

Every tool call in dcode goes over the network to a remote sandbox. For a task making 100+ file operations, this adds up.

What to Investigate

Where to Look

LangChain Remote Sandboxes Documentation

2. Multi-Tenant Evolution

The Question

How will NemoClaw handle multi-tenant enterprise deployments once it exits alpha single-player mode?

Why It Matters

Current OpenShell is "single-player" - one developer, one environment, one gateway. Enterprise needs multiple users, shared resources, and isolation.

What to Investigate

Where to Look

OpenShell GitHub - Issues and Roadmap

3. Blueprint Lifecycle Management

The Question

What is the upgrade path for blueprints when security patches are released?

Why It Matters

Blueprints are immutable once published. When a CVE affects a base image, how do you patch running agents?

What to Investigate

Where to Look

NVIDIA How It Works - Blueprint Versioning

4. Custom Policy Development

The Question

How do you implement custom policy rules beyond the three preset tiers (Restricted/Balanced/Open)?

Why It Matters

Enterprise domains have unique requirements. A financial services agent might need to access Bloomberg but block social media. Presets won't cover this.

What to Investigate

Where to Look

NVIDIA Sandbox Configuration

5. GPU Passthrough

The Question

How does the experimental sandbox GPU support work? What are the security implications?

Why It Matters

Local inference inside the sandbox (Ollama, vLLM) requires GPU access. But GPU passthrough creates new attack surfaces.

What to Investigate

Where to Look

OpenShell GitHub experimental features + NVIDIA GPU security documentation

6. Harness Portability

The Question

Does the harness tuning methodology developed for Nemotron 3 Ultra transfer to other model families?

Why It Matters

The "tuning the harness, not the model" approach was demonstrated on Nemotron. You need to know if this generalizes.

What to Investigate

Where to Look

LangChain Harness Tuning Playbook

7. Failure Modes and Error Handling

The Question

What happens when an agent attempts to access a denied network endpoint or write to a restricted path?

Why It Matters

Understanding failure modes helps you design better prompts and handle edge cases gracefully.

What to Investigate

Where to Look

NVIDIA OpenShell logs documentation + Policy Engine error handling

8. Local vs Cloud Inference Trade-offs

The Question

What are the trade-offs between local inference (Ollama/vLLM) versus cloud providers in NemoClaw?

Why It Matters

Local inference = no API costs, data stays on-prem. Cloud = better models, no GPU management. The math changes based on scale.

What to Investigate

Where to Look

NVIDIA Inference Configuration

9. Evaluation Frameworks

The Question

What evaluation frameworks exist for comparing agent performance across dcode and Claude Code on identical tasks?

Why It Matters

Without standardized benchmarks, you can't make data-driven tool decisions. The NemoClaw benchmark showed 10x cost savings, but what about other metrics?

What to Investigate

Where to Look

LangSmith evaluations + HumanEval / SWE-Bench benchmarks

10. Long-Running Session State

The Question

How do the memory systems compare for very long-running tasks (days/weeks) in enterprise workflows?

Why It Matters

Enterprise tasks span multiple sessions, sometimes weeks. Memory must persist, be searchable, and not degrade.

What to Investigate

Where to Look

LangChain DeepAgents Configuration - Memory

Learning Path Recommendation

Your Next Steps

flowchart TB subgraph DONE["Completed"] L1["Lesson 1: Fundamentals"] L2["Lesson 2: Architecture"] L3["Lesson 3: Comparison"] L4["Lesson 4: Advanced Questions"] end subgraph NEXT["Recommended Next"] H1["Hands-On: Install NemoClaw
Run your first sandboxed agent"] H2["Custom Blueprint
Create a domain-specific blueprint"] H3["Policy Development
Write custom network/FS rules"] H4["Benchmark
Compare dcode vs Claude Code
on your own tasks"] end L4 --> H1 H1 --> H2 H2 --> H3 H3 --> H4 style DONE fill:#e8f5e9,stroke:#76b900,stroke-width:2px style NEXT fill:#fff3e0,stroke:#f57c00,stroke-width:2px

Quick Reference Card

Print this and keep it at your desk:

NemoClaw Architecture Quick Reference

Component Is The Does
NemoClaw Orchestrator Onboards, manages lifecycle, resolves blueprints
OpenShell Sandbox Enforces policies, routes inference, isolates credentials
OpenClaw Agent Runs inside sandbox, executes tasks
Blueprint Config Defines image, policy, inference profile
dcode CLI LangChain's terminal agent, any LLM

Security Layers

Network → Filesystem → Process → Gateway → Inference

Mnemonic: "No Funny Paths Get In"

Key URLs

Communities for Wisdom

Knowledge comes from docs. Wisdom comes from practitioners. Join these:

Community Focus Link
LangChain Discord DeepAgents, LangGraph, agent development discord.gg/langchain
NVIDIA Developer Forums NemoClaw, OpenShell, enterprise deployment forums.developer.nvidia.com
r/LangChain General LangChain discussion reddit.com/r/LangChain