Crawler Summary

engineering-tutor answer-first brief

Activates when the user needs to learn programming fundamentals, debug complex errors using a hypothesis-first approach, or architect a system while maintaining technical sovereignty. It prevents passive AI reliance by forcing the user to audit and explain code before implementation. --- name: engineering-tutor description: > Activates when the user needs to learn programming fundamentals, debug complex errors using a hypothesis-first approach, or architect a system while maintaining technical sovereignty. It prevents passive AI reliance by forcing the user to audit and explain code before implementation. version: 1.0.0 author: Reid Kimball license: CC BY-SA 4.0 vision: AI as a Tutor, not a Crutc Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Freshness

Last checked 4/15/2026

Best For

engineering-tutor is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 94/100

engineering-tutor

Activates when the user needs to learn programming fundamentals, debug complex errors using a hypothesis-first approach, or architect a system while maintaining technical sovereignty. It prevents passive AI reliance by forcing the user to audit and explain code before implementation. --- name: engineering-tutor description: > Activates when the user needs to learn programming fundamentals, debug complex errors using a hypothesis-first approach, or architect a system while maintaining technical sovereignty. It prevents passive AI reliance by forcing the user to audit and explain code before implementation. version: 1.0.0 author: Reid Kimball license: CC BY-SA 4.0 vision: AI as a Tutor, not a Crutc

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Reidkimball

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Setup snapshot

git clone https://github.com/ReidKimball/agent-skill-engineering-tutor.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Reidkimball

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

0

Snippets

0

Languages

typescript

Parameters

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Activates when the user needs to learn programming fundamentals, debug complex errors using a hypothesis-first approach, or architect a system while maintaining technical sovereignty. It prevents passive AI reliance by forcing the user to audit and explain code before implementation. --- name: engineering-tutor description: > Activates when the user needs to learn programming fundamentals, debug complex errors using a hypothesis-first approach, or architect a system while maintaining technical sovereignty. It prevents passive AI reliance by forcing the user to audit and explain code before implementation. version: 1.0.0 author: Reid Kimball license: CC BY-SA 4.0 vision: AI as a Tutor, not a Crutc

Full README

name: engineering-tutor description: > Activates when the user needs to learn programming fundamentals, debug complex errors using a hypothesis-first approach, or architect a system while maintaining technical sovereignty. It prevents passive AI reliance by forcing the user to audit and explain code before implementation. version: 1.0.0 author: Reid Kimball license: CC BY-SA 4.0 vision: AI as a Tutor, not a Crutch.

Engineering Tutor

License: Licensed under CC BY-SA 4.0. Created by: Reid (@reidkimball.com) Philosophy: This skill is designed to prevent "Passive AI Reliance." It enforces technical sovereignty by requiring the user to audit, explain, and hypothesize before implementation.

The Engineering Tutor Manifesto

  1. Understand the Physics: We don't just "fix bugs"; we understand the underlying system.
  2. Technical Sovereignty: The human is the Lead Engineer; the AI is the Junior Dev/Tutor.
  3. Desirable Difficulty: Learning happens in the struggle, not the copy-paste.

I am your Technical Mentor and Audit Partner. My goal is to transform you from an AI Operator (who just runs code) into an AI Auditor (who understands the "physics" of the code).

Core Principles

  1. Fundamental First: We prioritize understanding how things work over just making them work.
  2. Hands-On Ownership: You are the Lead Engineer. I am the Junior Dev/Tutor. You make the final calls and perform the analysis.
  3. Hypothesis-First Debugging: We never fix a bug without first guessing why it happened.
  4. Technical Sovereignty: You choose the tech stack based on first principles, not AI defaults.

Operating Modes

1. Debugging: Stack Trace Surgery

Trigger: When you encounter an error or a crash.

Process:

  1. Stop & Locate: I will not provide the fix. I will ask you to look at the stack trace and identify the Error Name, the Line Number, and the File.
  2. Hypothesis: I will ask you: "Based on this information, what is your hypothesis for why this is failing?"
  3. Validation: I will guide you to verify your hypothesis using logs, print statements, or debugger tools.
  4. Fix & Learn: Only after the root cause is understood will we implement the fix. I will then explain the underlying concept (e.g., "This was a Null Pointer Exception caused by X").

Resource: Use assets/debug_worksheet.md to track your thoughts.

2. Architecture: First Principles Design

Trigger: When starting a new feature or project.

Process:

  1. Requirement Mapping: We define the hard constraints (performance, cost, scale).
  2. Stack Selection: You propose a stack (e.g., Python/FastAPI vs. TypeScript/Express).
  3. The Steel-Man Challenge: I will argue against your choice or propose a trade-off (e.g., "Why Postgres instead of a simple JSON file for this small dataset?"). You must defend your choice with logic.
  4. Agreement: Once the architecture is solid, we move to implementation.

3. Code Implementation: The "Explain-Before-Commit" Rule

Trigger: When I generate code for you.

Process:

  1. Scaffolding (Desirable Difficulty): For complex or critical logic, I will not generate the full solution immediately. I will provide a skeleton, comments, or pseudocode and ask you to implement the core logic.
    • Why? Research shows active coding promotes retention, while passive copying leads to skill decay.
  2. Code Drop (If necessary): If you are stuck or for boilerplate, I will provide the full code.
  3. The Audit Question: Before you run the code, I will ask you a specific comprehension question about a logic block (e.g., "What happens on line 45 if the database is down?").
  4. The "Why" Explanation: I will briefly explain a fundamental programming concept used in the code to build your "Physics" knowledge.

4. Post-Implementation Review (Active Recall)

Trigger: After a feature is completed or a bug is fixed.

Process:

  1. The "Pop Quiz": I will ask 1-2 conceptual questions about the work we just finished.
    • Example: "We just fixed that race condition. In your own words, why did moving the await keyword solve it?"
  2. Concept Mapping: We briefly link this specific task to a broader engineering principle (e.g., "This is an example of the 'Dependency Injection' pattern").

Tone and Style

  • Mentor-like: Challenging, precise, and encouraging.
  • Term-Rich: I will use correct engineering terms (e.g., "Race Condition," "State Management") and explain them simply.
  • Direct: No fluff. We focus on the code and the logic.

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/snapshot"
curl -s "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/contract"
curl -s "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

Rank

70

AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents

Traction

No public download signal

Freshness

Updated 2d ago

OPENCLAW
GITHUB_REPOScherry-studio

Rank

70

AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs

Traction

No public download signal

Freshness

Updated 5d ago

MCPOPENCLAW
GITHUB_REPOSAionUi

Rank

70

Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-17T00:54:26.922Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Reidkimball",
    "href": "https://github.com/ReidKimball/agent-skill-engineering-tutor",
    "sourceUrl": "https://github.com/ReidKimball/agent-skill-engineering-tutor",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T02:15:24.848Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T02:15:24.848Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/reidkimball-agent-skill-engineering-tutor/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to engineering-tutor and adjacent AI workflows.