This Week’s AI Efficiency Tools: Code Reviews to Video Editing
AI Summary · Serial Entrepreneur Perspective (Content distilled by AI; viewpoints belong to the original author. You don't need to read the full article.)
A curated selection of 12 real-world cases and tools for this week: building an automated PR risk-scoring bot with Vercel Eve, implementing a daily data analysis loop with Claude Code, and parsing a codebase locally with graphify to generate a knowledge graph. The content is heavily tool-oriented, covering prompt optimization, token cost reduction, skill瘦身, and video editing efficiency gains, with fine-grained details and concrete data support.
- Clone Merge Mommy: Build an automated PR risk-scoring bot with Vercel Eve to tackle code review backlogs
- Replicate a Daily Improvement Loop: Use Claude Code + GitHub Actions to auto-fetch GA4 and Search Console data daily
- Low-Cost Knowledge Graph: Parse a 10k-word codebase locally with graphify (tree-sitter), driving token costs to zero
- 83% Cost Cut for AI Agents: Apply a 15-step refactoring method to reduce input tokens for AI change execution from 150k to 27k
- Boost AI Output Quality: Adopt rules from GitHub's weekly top projects (e.g., limit checklists to 5 items, omit opening pleasantries) for concise outputs
This Week's AI Productivity Wins: From Automated Code Review to 80% Video Editing Takeover
This week features 12 high-granularity tools and case studies. The core logic shifts from "using AI to write code" to "using AI to manage code and production workflows." Below are actionable, reproducible paths.
1. Building an Automated PR Risk-Scoring Bot (Clone Merge Mommy)
Pain Point: After AI generates code, manual review backlogs pile up.
Solution: Leverage the Vercel Eve framework to build an agent called "Merge Mommy."
Execution Details:
- Trigger Mechanism: Fires automatically once a PR passes all CI checks.
- Scoring Dimensions: The AI scores the PR across six risk dimensions (e.g., security, compatibility, complexity) rather than just checking if it compiles.
- Output: Generates a risk report, helping reviewers quickly focus on high-risk changes and cutting initial screening time by over 70%.
Cost: Only requires configuring the Vercel Eve environment; no extra API fees (token consumption for reading PRs is controlled via filtering).
2. Daily Data-Driven Automated Code Repair Loop
Pain Point: Delays in detecting anomalies in GA4/Search Console data; manual troubleshooting for fixes.
Solution: Claude Code + GitHub Actions for a daily automated loop.
Execution Flow (Japanese Developer Case):
- Scheduled Trigger: GitHub Actions starts every day at 8 AM.
- Data Fetching: Auto-grabs core metrics (traffic, error rates, ranking changes) from GA4 (Google Analytics 4) and Search Console.
- Anomaly Analysis: Claude Code analyzes data fluctuations to pinpoint specific problem pages or code segments.
- Solution Generation: Auto-generates improvement plans, deduplicates them, and creates issues.
- Automated PR: For low-risk code changes (e.g., copy corrections, simple bugs), it auto-creates a PR; high-risk changes only submit suggestions for human review.
Key Value: Compresses the "data monitoring → problem analysis → code fix" cycle from days to within 24 hours.
3. Local Knowledge Graphing: Token Costs Drop to Zero
Pain Point: Large codebases (tens of thousands of lines) can't be fed directly into LLMs; token costs are prohibitive.
Solution: Use graphify (based on tree-sitter) for local parsing.
Case Data: A Japanese developer parsed a "messy factory" project of 407 files (~18 million words) into a knowledge graph.
- Tech Stack: tree-sitter (local AST parsing) + graph database; no LLM dependency throughout.
- Impact: Token costs reduced to zero, enabling structured retrieval and relationship mapping for large codebases.
- Use Cases: Medium-sized projects maintained by individuals; asset inventory before refactoring legacy codebases.
4. 83% Cost Reduction for Agents: The 15-Step Refactoring Method
Problem: When AI agents execute complex tasks, the context window gets flooded with useless information.
Solution: Reference a 15-step refactoring flow to optimize input prompt engineering.
Key Data: For the same change task, input tokens dropped from 159,564 to 27,360—a 83% savings.
Refactoring Essentials:
- Remove redundant project background descriptions; keep only context relevant to the current task.
- Separate generic system prompts from task-specific prompts; load them on demand.
- Use summaries instead of raw logs to avoid feeding full historical context to the model.
5. "Minimalist Rules" for Improving AI Output Quality
Source: GitHub Weekly Project #2: ayghri/i-have-adhd (12,714 stars).
Core Rules: The README lists only 10 rules, with these key ones for AI interaction:
- Start with the next action: Omit pleasantries like "Okay, I will..."
- Numbered steps: Require output in numbered points for clear logic.
- Checklists max 5 items: Prevent information overload; force the model to distill essentials.
- Omit openings and closings: Provide only conclusions and action instructions.
Impact: Significantly improves LLM output readability and reduces time spent on manual cleanup.
6. Video Editing Efficiency: Taking Over 80% of Repetitive Work
Case: Author Huang Yihe uses a custom AI Skill.
Application: For talking-head videos, the AI automatically handles basic editing steps like cutting silences, removing pauses, and adding subtitles.
Efficiency: Editing work that used to take 1 hour is now done in 10 minutes; creators only need to focus on narrative and pacing.
7. Quick Look at Other Useful Tools
- Human-Like Writing.skill: Open-sourced by Digital Life Kazuk; optimizes AI text for "human" expression and avoids mechanical tone.
- Skill Context Slimming: Author Karl refactored over 300 skills in Codex/Claude Code, saving 89% startup context per skill while preserving all recovery entry points.
- ima High-End English Dictionary: Three usage modes upgrade AI conversational translation to instant term lookups, boosting efficiency 5x.
- Shijing Landscape Map: An author with no coding background spent 20 days describing requirements to Codex, generating an interactive historical map accompanied by 305 poetic ballads created with MiniMax-Music; the community response was enthusiastic.
Action Recommendations
This Week's Priorities:
- Implement Immediately: Adopt the "minimalist rules" to revise your AI prompt templates (takes <10 minutes).
- Try Next Week: Set up a daily Claude Code data monitoring loop; start validating with one small metric from GA4.
- Long-Term Plan: Evaluate graphify for localizing your personal knowledge base to reduce long-term token costs.
(Source: Bing's Toolkit Telegram Channel; inaccessible in China. The above is an AI summary of the original article; full text not reprinted.)
Related Tool Recommendation (Promotion): GLM Coding Plan — AI Coding Powered by G…