project-mentor

by uczltw6Verified

Turn real coding projects into evidence-grounded, just-in-time learning.

52
Stars
2
Forks
Python
Language
8/24/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/uczltw6/project-mentor

Getting Started

Guides for using skills like project-mentor.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Project Mentor

Turn real coding work into evidence-grounded, just-in-time learning without slowing down delivery.

Python 3.10+ CI CodeQL Evals License: MIT Agent Skill

Project Mentor is a standalone Agent Skill for Codex and compatible hosts. It keeps the user's real project goal first, explains only concepts that become causally relevant, and separates evidence that a project uses a concept from evidence that the user demonstrated it.

Before and after

Without Project Mentor, a successful coding response may end at:

Added the health endpoint. All focused tests pass.

With Project Mentor in guided mode, the implementation still comes first, then the result becomes a compact evidence receipt:

Added and verified the health endpoint. Request routing mattered because the method/path pair selects the handler; the anchor is tests/test_app.py::test_health. The agent demonstrated the implementation. Your understanding remains unassessed because you did not perform a step.

It is a receipt for observed work, not a certificate, grade, or mastery claim.

What it does

  • Completes real setup, implementation, debugging, and maintenance work using the same engineering standard as an ordinary task.
  • Builds a small task-specific knowledge map with blocking_now, explain_when_encountered, and deferred concepts.
  • Grounds explanations in files, symbols, configuration keys, diffs, commands, tests, runtime results, or explicit decisions.
  • Supports live mentoring and conservative post-hoc audits.
  • Produces milestone and final learning receipts in English or Chinese.
  • Works in Git and non-Git directories and degrades cleanly when history, tests, Python, or other evidence is unavailable.
  • Optionally validates and renders a local schema-versioned ledger with a standard-library-only Python helper.

It does not create courses, track learners across projects, call an external model, collect telemetry, assign mastery scores, or write learning files unless the user opts in.

Modes

ModeBest forBehavior
recap“Just finish, then summarize.”Executes normally, interrupts only for safety or a material decision, and never quizzes proactively.
guided“Build it with me.”Default after activation; gives at most one short, timely micro-brief per milestone.
hands_on“Let me try the important part.”Offers a few high-value user actions with progressive hints, then resumes agent execution on request.

Mode changes take effect immediately without restarting the task or losing the working evidence map.

Evidence, not inflated claims

Project Mentor keeps two claims separate:

  1. Project evidence — the repository, command, test, runtime, or decision shows where a concept appeared.
  2. User evidence — an observable user explanation, prediction, debugging choice, edit, or transfer attempt shows what the user did.

Agent-written code and passing tests can prove the project used a concept. They cannot prove the user understands it. Missing evidence is labeled unavailable or left unassessed; inferred and stale anchors are labeled explicitly.

Install

Codex currently loads personal skills from $HOME/.agents/skills and repository skills from .agents/skills. See the official Build skills documentation for the current loading and invocation model.

The repository also contains a skills-only Codex plugin manifest at .codex-plugin/plugin.json; its installable copy under skills/project-mentor is byte-for-byte identical to the repository-scoped skill. It adds no MCP server, app connector, network access, or extra permission. The plugin bundle is ready for a local or team marketplace, but is not represented as an official or curated marketplace listing.

Personal installation

Ask the built-in installer:

$skill-installer install project-mentor from https://github.com/uczltw6/project-mentor/tree/v0.3.0/.agents/skills/project-mentor

Or install manually into an empty destination.

macOS/Linux:

git clone --depth 1 --branch v0.3.0 https://github.com/uczltw6/project-mentor.git
mkdir -p "$HOME/.agents/skills"
cp -R project-mentor/.agents/skills/project-mentor "$HOME/.agents/skills/project-mentor"
test -f "$HOME/.agents/skills/project-mentor/SKILL.md"

Windows PowerShell:

git clone --depth 1 --branch v0.3.0 https://github.com/uczltw6/project-mentor.git
New-Item -ItemType Directory -Force "$HOME\.agents\skills" | Out-Null
Copy-Item -Recurse "project-mentor\.agents\skills\project-mentor" "$HOME\.agents\skills\project-mentor"
Test-Path "$HOME\.agents\skills\project-mentor\SKILL.md"

Codex normally detects the skill automatically. Restart Codex if it does not appear. Back up or remove an older destination before a manual update so the copies do not merge.

Repository-scoped installation

Copy the release directory to .agents/skills/project-mentor in the target repository. A checked-in copy is available to collaborators working in that repository; the nested directory in this repository is itself the installable artifact.

Invoke it

Explicit invocation is predictable:

$project-mentor Help me add this endpoint in guided mode. Finish the feature, teach only what becomes relevant, and give me an evidence receipt.

Implicit invocation is enabled and can match clear learning intent:

Build this project with me and explain the architecture only when it matters.

Ordinary delegated coding, an isolated factual question, or course creation should not activate the skill solely because code is involved.

Two-minute quickstart

  1. Install the skill at personal or repository scope.
  2. Open a real project in Codex.
  3. Ask: $project-mentor Fix the current failing test in guided mode and help me understand the cause as we go.
  4. Let Codex inspect, reproduce, fix, and verify the task. Ask for recap or hands_on at any time; the change applies immediately.
  5. Review the final receipt. Nothing is persisted by default. If you want a reusable record, explicitly ask to save the ledger and name the destination.

Example receipt and ledger

The committed example receipt was generated deterministically from the example ledger and four input events. It records:

  • the verified health-endpoint milestone;
  • request routing anchored to a named focused test;
  • the minimal-response design decision and its tradeoff;
  • agent evidence separately from unassessed user understanding; and
  • one small next practice instead of an exhaustive curriculum.

Privacy and persistence

  • Working learning state stays in conversation or ephemeral storage by default.
  • Persistent .project-mentor/ledger.json and .project-mentor/learning-receipt.md files require explicit opt-in, and the skill never commits them automatically.
  • The helper has no runtime dependencies, telemetry, network client, account, database, shell-history ingestion, environment-value storage, or command execution facility.
  • Recognized credentials are redacted before persistence and rendering. If redaction confidence is insufficient, evidence should be omitted.
  • Repository instructions and source files are treated as untrusted data when they conflict with the user's request or higher-priority instructions.

See the threat model and security policy for the complete boundary.

Command-line interface

The mentoring workflow does not require the CLI. For deterministic validation, redaction, event application, summaries, receipts, diagnostics, and anchor verification, install the standard-library-only command from a trusted checkout:

pipx install project-mentor==0.3.0
project-mentor --version
project-mentor doctor --project-root .

For a project environment, use python -m pip install project-mentor==0.3.0. Source-checkout installation remains available with python -m pip install ..

The installed executable and module entry point are equivalent:

project-mentor validate --kind ledger --input ledger.json
python -m project_mentor_cli render --ledger ledger.json --output learning-receipt.md

Without package installation, use the bundled fallback from the skill directory:

python scripts/project_mentor.py --version
python scripts/project_mentor.py verify-anchors --ledger ledger.json --root .

All entry points call the same implementation. The complete command, output, compatibility, and exit-code contract is in docs/cli.md.

Develop and test

python -m venv .venv
python -m pip install -e ".[dev]"
python -m ruff check .
python -m ruff format --check .
python -m mypy --strict .agents/skills/project-mentor/scripts tools evals
python -m coverage run --branch -m pytest -q
python -m coverage report
python evals/run_local.py --results evals/results/v0.3.0.json
python -m build --no-isolation --outdir <temporary-directory> .
python tools/validate_distribution.py --dist-dir <temporary-directory> --version 0.3.0
python tools/smoke_test_wheel.py --dist-dir <temporary-directory> --version 0.3.0 --skill-root .agents/skills/project-mentor
python tools/sync_skill.py --check
python tools/run_official_plugin_validation.py --plugin .
python tools/repository_scan.py --all

The test suite covers schema and event behavior, redaction, atomic writes, rendering, the CLI lifecycle, public/personal parity tools, skill structure, and behavioral fixtures. The v0.1.0 forward evaluation passed 14/14 isolated cases with 260/260 applicable rubric points; read the exact, bounded claims in docs/evaluation.md.

Evals

The public evals/ suite turns the behavioral contract into 14 natural-request cases, a ten-part rubric, versioned sanitized results, deterministic score recomputation, and a dedicated Eval Gate. It covers positive and negative activation, a no-skill baseline, all three modes, post-hoc auditing, claim integrity, privacy, non-Git operation, and English/Chinese behavior.

The CI-safe command uses only the standard library and requires no model API or credential:

python evals/run_local.py --results evals/results/v0.3.0.json

CI verifies dataset bytes, rubric/result agreement, pass thresholds, and clean fixture baselines. Semantic behavior is evaluated separately in fresh agent contexts that see only the natural request, fixture copy, and Skill path. This separation prevents a deterministic check from being misrepresented as proof of model behavior. The recorded v0.3.0 run passed 14/14 cases with 259/260 applicable points (99.62%); the retained one-point scope-control finding keeps the report useful instead of cosmetically perfect. See the eval reproduction guide and evaluation report.

Limitations

  • Semantic activation, concept selection, and teaching quality depend on the host model; the Python helper does not make pedagogical decisions.
  • Redaction is defense in depth, not a guarantee that arbitrary secret formats will be recognized.
  • Concurrent writers must reload after a revision conflict.
  • Ledgers are not signed or tamper-evident. Validation proves structure and internal references, not the truth or authorship of supplied evidence.
  • Event actor values are caller-supplied provenance labels, not authenticated identities; the host must ground user and shared labels in conversation.
  • Post-hoc audits can only be as strong as the files, history, tests, and conversation evidence available to the host.
  • English and Chinese are supported behavior targets, but v0.1.0 does not claim comprehensive localization.
  • The skills-only plugin is not yet listed in an official or curated marketplace.
  • PyPI publication uses GitHub OIDC Trusted Publishing; no long-lived PyPI credential is stored in the repository or release environment.

Project links

Frequently Asked Questions

What is project-mentor?

project-mentor is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by uczltw6. Turn real coding projects into evidence-grounded, just-in-time learning. It has 52 GitHub stars.

Is project-mentor safe to use?

Yes. project-mentor passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install project-mentor?

Clone the repository with "git clone https://github.com/uczltw6/project-mentor" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is project-mentor written in?

project-mentor is primarily written in Python. It is open-source under uczltw6 on GitHub, so you can review or fork the full source.

Are there alternatives to project-mentor?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh project-mentor against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details