feat: Phase 5 — Security & Extensibility (s13/s14/s17)#261
Open
Bill-Billion wants to merge 1 commit intoshareAI-lab:mainfrom
Open
feat: Phase 5 — Security & Extensibility (s13/s14/s17)#261Bill-Billion wants to merge 1 commit intoshareAI-lab:mainfrom
Bill-Billion wants to merge 1 commit intoshareAI-lab:mainfrom
Conversation
Add three new chapters to the learn-claude-code curriculum: - s13: Permission Guard — 5-mode permission system (allow/deny/ask/edit/auto_edit) - s14: Security Classifier — two-layer pipeline (regex quick-scan + LLM classify) - s17: Secure Extension Harness — 5-layer execution pipeline combining all layers Backend: standalone Python agents with tri-lingual docs (en/zh/ja) Frontend: animated SVG visualizations for Learn tab, execution flow diagrams for Deep Dive tab, scenario data for Simulate tab Also includes: - Rewrite getEdgePath to use bezier curves, fixing crossing/overlapping edges in execution flow diagrams (especially s12) - Add loop-back routing along left side for backward edges - Add same-row horizontal connection support - Add security layer dot color (cyan) to sidebar navigation - Unify zh.json sidebar titles to English for consistency
|
@Bill-Billion is attempting to deploy a commit to the crazyboym's projects Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Key Changes
New Content
agents/s13_permission_guard.py— 5-mode permission system (allow/deny/ask/edit/auto_edit)agents/s14_security_classifier.py— Two-layer classification (regex quick-scan + LLM)agents/s17_secure_extension_harness.py— 5-layer execution pipeline (PreHook → Classify → Permission → Execute → PostHook)docs/{en,zh,ja}/Frontend
s13-permission-guard.tsx,s14-security-classifier.tsx,s17-secure-extension-harness.tsxImprovements
Test plan
python agents/s13_permission_guard.pyruns independentlypython agents/s14_security_classifier.pyruns independentlypython agents/s17_secure_extension_harness.pyruns independentlynpx next buildinweb/compiles with zero errors