惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - PatrickSqx/MindCheck: Analyse your AI conversati...
Grp1 · 2026-04-28 · via Hacker News - Newest: "AI"

Are you using AI as a tool — or becoming dependent on it?

MindCheck analyses your AI conversation logs and measures your cognitive engagement — not how much you use AI, but how you use it.


The problem

AI tools are powerful. But there's a risk: the easier it gets to offload thinking, the less thinking you do. You might not notice it happening — until one day you can't solve problems without asking AI first.

MindCheck gives you a mirror.


What it measures

Signal What it detects
Hypothesis level Do you form a hypothesis before asking, or just dump the problem? (0–4 scale)
Ownership Are you driving the conversation, or just reacting to AI output?
Critical engagement Do you push back on AI answers, or accept everything?
Self-reliance Do you attempt problems before asking for help?
Metacognition Do you reflect on your own approach and blind spots?
Delegation How often are you handing off thinking entirely?

Score bands

Score Meaning
70–100 Strong engagement — driving, hypothesising, thinking critically
50–69 Moderate — solid in places, room to push deeper before asking
30–49 Passive — leaning on AI for direction more than thinking first
0–29 Heavy delegation — most asks hand off the thinking entirely

How it works

Three-tier signal extraction — designed to be cheap and private:

Tier 1: Structural rules    (free, offline)  — ratios, counts, patterns
Tier 2: Semantic embeddings (free, offline)  — meaning, not just keywords
Tier 3: LLM classification  (~$0.01/month)  — ambiguous edge cases only

Only your messages are analysed — AI responses are discarded. Results are cached locally so re-running is instant.


Install

pip install mindcheck

Or from source:

git clone https://github.com/PatrickSqx/MindCheck.git
cd MindCheck
pip install -e .

First run: Tier 2 downloads a ~118 MB multilingual embedding model automatically. This only happens once.


Usage

# Score a single session file
mindcheck score session.jsonl

# Score with Tier 3 LLM refinement
mindcheck score session.jsonl --tier 3

# Analyse all sessions in a folder
mindcheck analyze ./sessions/

# Auto-discover and report on last 30 days
mindcheck report --last 30d

# Show all auto-discovered session directories on this machine
mindcheck scan

# Cache management
mindcheck cache          # show cache stats
mindcheck cache --clear  # clear all cached scores

Tier 3 setup (optional)

Tier 3 uses a cheap LLM to resolve messages that Tier 2 was uncertain about. It's optional — Tier 2 handles most sessions well on its own.

# Anthropic (key auto-detected from sk-ant- prefix)
mindcheck config --key sk-ant-xxxx

# OpenAI (key auto-detected from sk- prefix)
mindcheck config --key sk-xxxx

# Gemini (key auto-detected from AIza prefix)
mindcheck config --key AIzaxxxx

# Local Ollama (free, no key needed)
mindcheck config --provider ollama

# Choose a specific model
mindcheck config --model gemini-2.5-flash-lite

# Show current config and available models
mindcheck config --show

Supported formats

Tool Auto-discovered
Claude Code ~/.claude/projects/
Cursor ~/.cursor/projects/
Codex CLI ~/.codex/sessions/
Gemini CLI ~/.gemini/tmp/

Agent/subagent sessions are automatically filtered — only human conversations are scored.


Scoring methodology

The composite score (0–100) is a weighted blend of semantic signals extracted from your messages:

Signal Weight How it's measured
Hypothesis quality 25% Each message is classified on a 0–4 scale: 0 = no attempt ("fix this"), 1 = symptom only ("it's broken"), 2 = locates the problem ("fails on line 42"), 3 = forms a hypothesis ("I think X because Y"), 4 = tested a hypothesis ("I tried X, still fails, so maybe Y")
Ownership 20% Whether you're steering the conversation ("I want to try X") vs deferring decisions ("what should I do?")
Critical engagement 20% Whether you push back on AI responses ("that doesn't seem right because...") vs accepting passively ("looks good, thanks")
Self-reliance 15% Whether you attempted the problem before asking ("I tried X but it didn't work")
Metacognition 10% Whether you reflect on your own thinking ("am I approaching this wrong?")
Structural signals 5% Question ratio, turn count, how much you write vs the AI
Delegation penalty up to −20 pts Deducted when messages outsource thinking entirely ("just do it", "write the whole thing")

How classification works

Tier 2 (default) uses a local embedding model to compare each message against prototype phrases for each signal via cosine similarity. No data leaves your machine.

Tier 3 (optional) sends only individual low-confidence messages to an LLM for reclassification. High-confidence LLM results are saved locally and fed back into Tier 2's prototypes, so accuracy improves over time.


Privacy

Everything runs locally. No data leaves your machine unless you explicitly enable Tier 3 with your own API key. Even then, only short individual messages are sent — never AI responses, never full sessions.


Roadmap

  • v1.0 — Tier 1/2/3 scoring, four parsers, SQLite cache, multilingual support
  • v1.1 — ChatGPT export parser, cross-session learning trajectory, prototype self-improvement loop

License

MIT