Measure AI coding proficiency based on context engineering artifacts
Project description
Measure AI Proficiency
A CLI tool for measuring AI coding proficiency based on context engineering artifacts.
The Problem
Adoption โ proficiency. Some developers save 10+ hours a week with AI. Others get slower with the same tools.
How do you measure actual AI proficiency?
The Solution
Measure context engineering. Look at whether teams are creating files like CLAUDE.md, .cursorrules, .github/copilot-instructions.md, and AGENTS.md. These artifacts indicate that someone has moved beyond treating AI as fancy autocomplete and started deliberately shaping how AI understands their work.
This tool scans repositories for context engineering artifacts and calculates a maturity score based on an 8-level model aligned with Steve Yegge's stages.
Since v0.6.0 it also detects 2026 context-engineering signals โ verification, hooks, eval loops, telemetry, anti-drift maintenance hygiene, dynamic-workflow orchestration, plugins, and harness engineering โ and uses them to gate Levels 6-8 (file coverage alone is no longer enough). It also flags bloated always-on files (a permanent context tax). See docs/SIGNALS.md and docs/AGENTS_FILE_GUIDANCE.md (how to write concise, behavioral CLAUDE.md/AGENTS.md). All detection is grounded in official documentation.
Quick Start
# Install from PyPI
pip install measure-ai-proficiency
# Run on any repository
cd /path/to/your-project
measure-ai-proficiency
That's it! The tool scans for files like CLAUDE.md, .cursorrules, .github/copilot-instructions.md, and calculates a maturity score.
MCP Server - AI Context Awareness ๐
NEW: Make your AI assistant aware of its own proficiency! The MCP server brings real-time AI context analysis directly into Claude Code, Cursor, and other MCP-compatible tools.
Quick Setup
# 1. Install (if not already installed)
pip install measure-ai-proficiency
# 2. Add to your .mcp.json
{
"mcpServers": {
"measure-ai-proficiency": {
"command": "measure-ai-proficiency-mcp"
}
}
}
# 3. Restart Claude Code
What You Can Do
Ask your AI assistant:
- "What's my AI proficiency level?" โ Real-time analysis
- "Are my cross-references valid?" โ Validate CLAUDE.md links
- "How can I reach Level 6?" โ Get specific recommendations
- "Scan all repos in my org" โ Organization-wide assessment
Available MCP Tools
scan_current_repo- Analyze current repositoryget_recommendations- Get improvement suggestionscheck_cross_references- Validate AI context file linksget_level_requirements- Show next level requirementsscan_github_repo- Analyze remote GitHub reposcan_github_org- Scan entire GitHub organizationvalidate_file_quality- Check specific file qualitycheck_harness_orchestration_quality- 2026 harness/orchestration maturity + L6-L8 gatesscan_for_maintenance_hygiene- Anti-drift maintenance hygieneget_dynamic_workflow_recommendations- Adopt Dynamic Workflows + verificationcurricula_alignment- Official learning on-ramp referencescheapest_primitive_decision_tree_report- Primitive decision discipline
๐ Full MCP Documentation - Setup, examples, troubleshooting
Why use MCP? Creates a meta-improvement loop where the tool that measures AI proficiency becomes AI-accessible, enabling real-time feedback and guided improvements.
What You'll See
============================================================
AI Proficiency Report: my-project
============================================================
Overall Level: Level 5: Multi-Agent Ready
Overall Score: 59.8/100
AI Tools: Claude Code, GitHub Copilot
Level Breakdown:
โ Level 1: Zero AI [โโโโโโโโโโโโโโโโโโโโ] 100.0%
โ Level 2: Basic Instructions [โโโโโโโโโโโโโโโโโโโโ] 66.7%
โ Level 3: Comprehensive [โโโ|โโโโโโโโโโโโโโโโ] 19.0%/15% โ
โ Level 4: Skills & Automation[โโ|โโโโโโโโโโโโโโโโโ] 14.5%/12% โ
โ Level 5: Multi-Agent Ready [โโ|โโโโโโโโโโโโโโโโโ] 13.9%/10% โ
โ Level 6: Fleet Ready [โ|โโโโโโโโโโโโโโโโโโ] 0.0%/8% needs +8%
Validation Warnings:
๐ TEMPLATE: CLAUDE.md contains template markers (your-org-name)
โ ๏ธ MISSING REF: CLAUDE.md references 'old-file.ts' (deleted)
Penalty: -2.0 points
Behavioral Indicators (Levels 6-8):
โ CI/CD Agent Integration (L6)
โ Agent Handoffs (L7): 3 agents
โ Measured Outcomes (L8)
Recommendations:
โ ๐ฏ FLEET READY: Add fleet infrastructure for parallel agents
โ ๐ง Set up Beads for persistent memory across sessions
โ ๐ Add workflows/ for multi-step process definitions
Installation
pip install measure-ai-proficiency
Or install from source:
git clone https://github.com/pskoett/measuring-ai-proficiency.git
cd measuring-ai-proficiency
pip install -e .
Usage
The tool supports two scanning modes - choose the one that fits your workflow:
Mode 1: Local Scanning (Default)
Scan repositories on your local disk. Works offline, no authentication needed.
# Scan current directory
measure-ai-proficiency
# Scan specific repository
measure-ai-proficiency /path/to/repo
# Scan multiple repositories
measure-ai-proficiency /path/to/repo1 /path/to/repo2
# Scan all repos in a directory (cloned GitHub org)
measure-ai-proficiency --org /path/to/cloned-org
Best for:
- Local development
- Offline scanning
- Repos already on disk
- No GitHub authentication needed
Mode 2: GitHub CLI Scanning (Optional)
Scan GitHub repositories directly without cloning them using the GitHub CLI:
# Scan a single GitHub repository
measure-ai-proficiency --github-repo owner/repo
# Scan an entire GitHub organization
measure-ai-proficiency --github-org anthropic
# Limit the number of repos scanned
measure-ai-proficiency --github-org anthropic --limit 50
# Combine with output formats
measure-ai-proficiency --github-org your-org --format json --output report.json
Best for:
- Scanning organizations without cloning
- Large-scale analysis
- Private repos (with authentication)
- Quick assessments of remote repos
Requirements:
- GitHub CLI (gh) must be installed
- Must be authenticated:
gh auth login
How it works:
- Uses GitHub API to fetch repository file tree
- Downloads only relevant AI proficiency files (no full clone!)
- Scans the files locally in a temporary directory
- Cleans up automatically after scanning
Advantages over cloning:
- โ Much faster (only downloads relevant files)
- โ No disk space needed for full repositories
- โ Works with hundreds of repos efficiently
- โ Automatic cleanup after scanning
Choosing Between Modes
| Feature | Local Scanning | GitHub CLI Scanning |
|---|---|---|
| Setup | None | Requires gh CLI + auth |
| Network | Works offline | Requires internet |
| Speed | Fast for local repos | Fast for remote repos |
| Disk Space | Uses existing repos | Minimal (temp files only) |
| Authentication | Not needed | GitHub auth required |
| Private Repos | Must clone first | Works if authenticated |
| Best Use | Local development | Organization-wide analysis |
Note: Both scanning modes support all features:
- All output formats (terminal, JSON, markdown, CSV)
- All CLI flags (--format, --output, -q, --min-level)
- Cross-reference detection and quality scoring
- Tool auto-detection
- Custom configuration (
.ai-proficiency.yaml)
Output Formats
Both scanning modes work with all output formats:
# Terminal output (default, with colors)
measure-ai-proficiency
# JSON output
measure-ai-proficiency --format json
# Markdown report
measure-ai-proficiency --format markdown
# CSV (for spreadsheets)
measure-ai-proficiency --format csv
# Save to file
measure-ai-proficiency --format markdown --output report.md
Other Options
# Quiet mode (summary only)
measure-ai-proficiency -q
# Filter by minimum level
measure-ai-proficiency --org /path/to/org --min-level 2
Maturity Levels
The tool measures maturity on an 8-level scale aligned with Steve Yegge's stages:
| Level | Name | Description |
|---|---|---|
| 1 | Zero AI | No AI-specific files (baseline) |
| 2 | Basic Instructions | Basic context files (CLAUDE.md, .cursorrules, etc.) |
| 3 | Comprehensive Context | Architecture, conventions, patterns documented |
| 4 | Skills & Automation | Hooks, commands, memory files, workflows |
| 5 | Multi-Agent Ready | Multiple agents, MCP configs, handoffs |
| 6 | Fleet Infrastructure | Beads, shared context, workflow pipelines |
| 7 | Agent Fleet | Governance, scheduling, 10+ agents |
| 8 | Custom Orchestration | Gas Town, meta-automation, frontier |
Supported Tools
The tool auto-detects and supports all major AI coding tools:
- Claude Code:
CLAUDE.md,AGENTS.md,.claude/ - GitHub Copilot:
.github/copilot-instructions.md,.github/agents/,.github/skills/ - Cursor:
.cursorrules,.cursor/rules/,.cursor/skills/ - OpenAI Codex CLI:
CODEX.md,.codex/,AGENTS.md - VSCode AI:
.vscode/*.md
Smart Scanning: Automatically excludes node_modules/, venv/, dist/, build/, and other dependency folders.
Example Output
Terminal
============================================================
AI Proficiency Report: measuring-ai-proficiency
============================================================
Overall Level: Level 5: Multi-Agent Ready
Overall Score: 60.1/100
AI Tools: Claude Code, GitHub Copilot, OpenAI Codex
Level Breakdown:
โ Level 1: Zero AI
[โโโโโโโโโโโโโโโโโโโโ] 100.0% (1 files)
โ README.md
โ Level 2: Basic Instructions
[โโโโโโโโโโโโโโโโโโโโ] 75.0% (3 files)
โ CLAUDE.md
โ AGENTS.md
โ .github/copilot-instructions.md
โ Level 3: Comprehensive Context
[โโโ|โโโโโโโโโโโโโโโโ] 18.8%/15% โ (62 files)
โ .github/PULL_REQUEST_TEMPLATE.md
โ .github/copilot-instructions.md
... and 60 more
โ Level 4: Skills & Automation
[โโ|โโโโโโโโโโโโโโโโโ] 13.7%/12% โ (20 files)
โ .claude/skills/measure-ai-proficiency/SKILL.md
โ .claude/skills/agentic-workflow/SKILL.md
... and 18 more
โ Level 5: Multi-Agent Ready
[โโ|โโโโโโโโโโโโโโโโโ] 13.9%/10% โ (8 files)
โ .github/agents/debug-agentic-workflow.agent.md
โ .github/agents/improve-ai-context.agent.md
... and 6 more
โ Level 6: Fleet Infrastructure
[โ|โโโโโโโโโโโโโโโโโโ] 0.0%/8% needs +8.0% (0 files)
Cross-References & Quality:
References: 126 found in 11 files
Unique targets: 34
Resolved: 82/126 (65%)
Content Quality:
CLAUDE.md: 10.0/10 (797 words) [ยง โ $ ! โป12]
AGENTS.md: 10.0/10 (513 words) [ยง โ $ !]
.github/copilot-instructions.md: 10.0/10 (755 words) [ยง โ $ โป9]
.claude/skills/measure-ai-proficiency/SKILL.md: 10.0/10 (1099 words) [ยง โ $ ! โป11]
Quality indicators:
ยง=sections โ=paths $=commands !=constraints โปN=commits
Bonus: +9.1 points
Recommendations:
โ ๐ Detected AI tools: Claude Code, GitHub Copilot, OpenAI Codex.
โ ๐ฏ FLEET READY: You have multi-agent setup. Now add fleet infrastructure.
โ ๐ง Set up Beads: Create .beads/ for persistent memory across agent sessions.
============================================================
JSON
{
"repo_name": "measuring-ai-proficiency",
"overall_level": 5,
"overall_score": 60.09,
"detected_tools": ["claude-code", "github-copilot", "openai-codex"],
"level_scores": {
"1": {"name": "Level 1: Zero AI", "coverage_percent": 100.0, "file_count": 1},
"2": {"name": "Level 2: Basic Instructions", "coverage_percent": 75.0, "file_count": 3},
"3": {"name": "Level 3: Comprehensive Context", "coverage_percent": 18.75, "file_count": 62},
"4": {"name": "Level 4: Skills & Automation", "coverage_percent": 13.73, "file_count": 20},
"5": {"name": "Level 5: Multi-Agent Ready", "coverage_percent": 13.89, "file_count": 8}
},
"cross_references": {
"total_count": 126,
"resolved_count": 82,
"resolution_rate": 65.08,
"bonus_points": 9.08
},
"recommendations": ["..."]
}
Markdown
The markdown format produces a detailed report with tables:
| Level | Coverage | Files | Status |
|---|---|---|---|
| Level 1: Zero AI | 100.0% | 1 | โ |
| Level 2: Basic Instructions | 75.0% | 3 | โ |
| Level 3: Comprehensive Context | 18.8% | 62 | โ |
| Level 4: Skills & Automation | 13.7% | 20 | โ |
| Level 5: Multi-Agent Ready | 13.9% | 8 | โ |
| Level 6: Fleet Infrastructure | 0.0% | 0 | โ |
Content Quality:
| File | Score | Words | Commits |
|---|---|---|---|
CLAUDE.md |
10.0/10 | 797 | 12 |
AGENTS.md |
10.0/10 | 513 | - |
.github/copilot-instructions.md |
10.0/10 | 755 | 9 |
.claude/skills/measure-ai-proficiency/SKILL.md |
10.0/10 | 1099 | 11 |
Files Detected by Level
Level 2: Basic Instructions
| Tool | Files |
|---|---|
| Claude Code | CLAUDE.md, AGENTS.md |
| GitHub Copilot | .github/copilot-instructions.md, .github/AGENTS.md |
| Cursor | .cursorrules, .cursor/*.md |
| OpenAI Codex | CODEX.md, .codex/*.md |
Level 3: Comprehensive Context
| Category | Files |
|---|---|
| Architecture | ARCHITECTURE.md, docs/ARCHITECTURE.md, DESIGN.md |
| API & Data | API.md, docs/API.md, DATA_MODEL.md |
| Standards | CONVENTIONS.md, STYLE.md, CONTRIBUTING.md, PATTERNS.md, PR_REVIEW.md |
| Development | DEVELOPMENT.md, TESTING.md, DEBUGGING.md, DEPLOYMENT.md |
Level 4: Skills & Automation
| Category | Files |
|---|---|
| Skills | .claude/skills/*/SKILL.md, .github/skills/*/SKILL.md, .cursor/skills/*/SKILL.md |
| Workflows | .claude/commands/, WORKFLOWS.md, scripts/ |
| Memory | MEMORY.md, LEARNINGS.md, DECISIONS.md |
| Hooks | .claude/hooks/, .claude/settings.json |
Level 5+: Multi-Agent & Fleet
| Category | Files |
|---|---|
| Agents | .github/agents/*.agent.md, agents/HANDOFFS.md |
| MCP | .mcp.json, .mcp/*.json |
| Orchestration | orchestration.yaml, workflows/*.yaml |
Cross-Reference Detection & Quality
The tool analyzes the content of your AI instruction files, not just their existence.
Quality Scoring (0-10)
| Indicator | What We Look For | Points |
|---|---|---|
| Sections | Markdown headers (##) - 5+ headers = full points |
0-2 |
| Paths | Concrete file paths (/src/, ~/config/) |
0-2 |
| Commands | CLI commands in backticks (`npm test`) |
0-2 |
| Constraints | "never", "avoid", "don't", "must not", "always" | 0-2 |
| Substance | Word count (200+ = 2pts, 50-200 = 1pt) | 0-2 |
| Commits | Git history (5+ = 2pts, 3-4 = 1pt) | 0-2 |
Quality score is capped at 10.
Bonus Points (up to +10)
- Cross-reference bonus (up to 5 pts): References between docs, resolution rate
- Quality bonus (up to 5 pts): Half of average quality score
Customization
For Your Team
Different teams use different file names. The tool works best when customized:
- Run the tool to see what it detects
- Review patterns in
measure_ai_proficiency/config.py - Add your team's specific file names
- Adjust thresholds if needed
๐ Read the full customization guide
Configuration File
Create .ai-proficiency.yaml in your repository:
# Specify which AI tools your team uses
tools:
- claude-code
- github-copilot
# Adjust level thresholds (lower = easier to advance)
thresholds:
level_3: 10 # Default: 15
level_4: 8 # Default: 12
# Skip certain recommendations
skip_recommendations:
- hooks
- gastown
Add Custom Patterns
# In config.py, add your team's files:
file_patterns=[
"SYSTEM_DESIGN.md", # Instead of ARCHITECTURE.md
"documentation/*.md", # Instead of docs/
"CODING_STANDARDS.md", # Instead of CONVENTIONS.md
]
GitHub Action
Automatically assess AI proficiency on every PR:
# Quick setup with GitHub Agentic Workflows
gh extension install githubnext/gh-aw
gh aw add pskoett/measuring-ai-proficiency/.github/workflows/ai-proficiency-pr-review --create-pull-request
๐ Full GitHub Action documentation
Agent Skills
Want AI to help improve your context engineering? Add skills to your repository:
Available Skills
| Skill | Description |
|---|---|
| measure-ai-proficiency | Assess repository AI maturity |
| customize-measurement | Generate a customized .ai-proficiency.yaml |
| plan-interview | Structured requirements gathering |
| agentic-workflow | Create natural language GitHub Actions |
Install Skills
For Claude Code:
mkdir -p .claude/skills/measure-ai-proficiency
curl -o .claude/skills/measure-ai-proficiency/SKILL.md \
https://raw.githubusercontent.com/pskoett/measuring-ai-proficiency/main/skill-template/measure-ai-proficiency/SKILL.md
For GitHub Copilot:
mkdir -p .github/skills/measure-ai-proficiency
curl -o .github/skills/measure-ai-proficiency/SKILL.md \
https://raw.githubusercontent.com/pskoett/measuring-ai-proficiency/main/skill-template/measure-ai-proficiency/SKILL.md
Then ask your AI: "Assess my AI proficiency" or "What context files should I add?"
AI Agents
For systematic improvement workflows, use the AI Context Improvement Agent:
Available in this repo:
.github/agents/improve-ai-context.agent.md- For GitHub Copilot.claude/agents/improve-ai-context.agent.md- For Claude Code
Integrated workflow using three skills:
- plan-interview - Gathers requirements about your team's goals and constraints
- customize-measurement - Creates tailored
.ai-proficiency.yamlconfiguration - measure-ai-proficiency - Assesses and systematically improves your context
What it does:
- Interviews you about team goals, tools, and target maturity level
- Creates custom configuration matching your needs
- Runs AI proficiency assessment with your config
- Analyzes gaps and quality scores
- Creates missing context files systematically
- Improves existing files with low quality scores
- Re-scans to verify improvements
- Works with single repos or entire organizations
How to use:
Ask your AI assistant:
- "Improve my AI proficiency" (full workflow with interview and config)
- "Help me understand what context I need" (starts with plan-interview)
- "Configure measurement for my team" (uses customize-measurement)
- "Create missing context files" (quick assessment and improvement)
- "Fix my low quality score" (focused on quality improvements)
- "Advance to Level 4" (goal-oriented improvement)
The agent will guide you through requirements gathering, create a custom configuration, scan your repo, identify gaps, and systematically create or improve files to advance your maturity level.
Discover & Scan GitHub Organizations
You can now scan entire GitHub organizations without cloning any repositories:
# Scan all repos in an organization
measure-ai-proficiency --github-org your-org-name --format json --output report.json
Alternatively, use the discovery script to first see which repos have AI artifacts:
./scripts/find-org-repos.sh your-org-name
# Example output:
# Organization: anthropics
# Active repositories: 45
# Repos with AI context artifacts: 12 (26.7%)
Both methods require GitHub CLI (gh) to be installed and authenticated. The discovery script also requires jq.
Use Cases
Engineering Leadership
# Assess AI proficiency across your organization
measure-ai-proficiency --org /path/to/all-repos --format csv --output proficiency.csv
CI/CD Integration
- name: Check AI Proficiency
run: |
pip install git+https://github.com/pskoett/measuring-ai-proficiency.git
measure-ai-proficiency --min-level 1
Team Onboarding
# Show new team members what context engineering looks like
measure-ai-proficiency
Scoring Algorithm
- File Detection: Scan for patterns at each level (1-8)
- Substantiveness Check: Files must have >100 bytes to count
- Coverage Calculation: Percentage of patterns matched per level
- Level Achievement:
- Level 2: At least one AI context file
- Level 3: Level 2 + โฅ15% coverage
- Level 4: Level 3 + โฅ12% coverage
- Level 5+: Progressive thresholds (โฅ10%, โฅ8%, โฅ6%, โฅ5%)
- Minimum Score Guarantees: Each level achieved guarantees a minimum score:
- Level 2: 15, Level 3: 30, Level 4: 45, Level 5: 55
- Level 6: 70, Level 7: 85, Level 8: 95
- Bonus: Up to +10 points from cross-references and quality
- Validation Penalties: Up to -10 points for issues (see below)
Content Validation
The tool validates your context files beyond just counting them:
| Validation | What It Checks | Penalty |
|---|---|---|
| Freshness | Files updated within 90 days of code changes | -2 pts per stale file (max -6) |
| Alignment | Referenced files actually exist | -1 pt per missing ref (max -4) |
| Templates | Detects copy-pasted boilerplate markers | -2 pts if majority are templates |
Warnings displayed:
STALE: CLAUDE.md last updated 120 days ago- Your context is outdatedMISSING REF: CLAUDE.md references 'src/old.ts' (deleted)- Broken referencesTEMPLATE: CLAUDE.md contains template markers- Uncustomized boilerplate
Behavioral Indicators (Levels 6-8)
Higher levels now have concrete behavioral requirements beyond file patterns:
| Level | Indicator | What It Checks |
|---|---|---|
| L6 | CI/CD Integration | GitHub Actions workflows that invoke agents |
| L7 | Agent Handoffs | 2+ agents with documented handoff protocols |
| L8 | Measured Outcomes | Metrics files, logs, or success tracking |
These indicators are displayed in the output but don't affect scoring (yet).
Understanding Your Score
Low score but lots of files? This is normal! The tool includes hundreds of patterns. Your team likely uses different file names - customize the patterns for accurate scoring.
Got validation warnings? These identify issues that reduce AI effectiveness:
- Stale context files mislead AI with outdated information
- Broken references confuse AI about your codebase structure
- Template content provides generic rather than project-specific guidance
Contributing
Contributions welcome! Areas of interest:
- Additional file patterns for new tools
- โ
Integration with GitHub API for remote scanning(implemented via GitHub CLI) - Historical tracking and trend analysis
- IDE extensions
See FEATURE_BACKLOG.md for advanced metrics and architectural patterns we're exploringโincluding semantic drift detection, progressive disclosure scoring, and security governance indicators.
License
MIT
Related
- Context Engineering Article - The thinking behind this tool
- Steve Yegge's Gas Town - Behavioral maturity model inspiration
- Claude Code Skills | GitHub Copilot Skills | Agent Skills Standard
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file measure_ai_proficiency-0.6.0.tar.gz.
File metadata
- Download URL: measure_ai_proficiency-0.6.0.tar.gz
- Upload date:
- Size: 102.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf130c80fa287a1e4b7c4f28502310dd3fd0b79a35e93c24f69d9652b2da7012
|
|
| MD5 |
5ba9663ca22ae533af016d69e2869c02
|
|
| BLAKE2b-256 |
2ed0aa6d14e94516fe7fe3f9fd02262d0bc228c678bba8a799d1fc4bcb766eb2
|
Provenance
The following attestation bundles were made for measure_ai_proficiency-0.6.0.tar.gz:
Publisher:
publish.yml on pskoett/measuring-ai-proficiency
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
measure_ai_proficiency-0.6.0.tar.gz -
Subject digest:
bf130c80fa287a1e4b7c4f28502310dd3fd0b79a35e93c24f69d9652b2da7012 - Sigstore transparency entry: 1691398705
- Sigstore integration time:
-
Permalink:
pskoett/measuring-ai-proficiency@b39da24b18f7cd9a5b58c00bbf5cefb3b0f11c92 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/pskoett
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b39da24b18f7cd9a5b58c00bbf5cefb3b0f11c92 -
Trigger Event:
release
-
Statement type:
File details
Details for the file measure_ai_proficiency-0.6.0-py3-none-any.whl.
File metadata
- Download URL: measure_ai_proficiency-0.6.0-py3-none-any.whl
- Upload date:
- Size: 81.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d95f40cc112202eca252d436732c098ee39fb6760ad480fed7eebf5e8bb4ef7
|
|
| MD5 |
2be8215c3447e1866fdd744cdf59f148
|
|
| BLAKE2b-256 |
097c8543a2ea9fc15a0b8fa24558bb4b1e27c4560ea77b003ab6f7c810c5437c
|
Provenance
The following attestation bundles were made for measure_ai_proficiency-0.6.0-py3-none-any.whl:
Publisher:
publish.yml on pskoett/measuring-ai-proficiency
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
measure_ai_proficiency-0.6.0-py3-none-any.whl -
Subject digest:
3d95f40cc112202eca252d436732c098ee39fb6760ad480fed7eebf5e8bb4ef7 - Sigstore transparency entry: 1691398729
- Sigstore integration time:
-
Permalink:
pskoett/measuring-ai-proficiency@b39da24b18f7cd9a5b58c00bbf5cefb3b0f11c92 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/pskoett
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@b39da24b18f7cd9a5b58c00bbf5cefb3b0f11c92 -
Trigger Event:
release
-
Statement type: