evaluate-agent-framework

Assess an open-source agent framework for investment readiness by evaluating community health, supersession risk, architecture alignment, and governance sustainability. Produces a four-tier classification (INVEST / EVALUATE-FURTHER / CONTRIBUTE-CAUTIOUSLY / AVOID) to guide resource allocation decisions before committing engineering effort.

9 stars

Best use case

evaluate-agent-framework is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Assess an open-source agent framework for investment readiness by evaluating community health, supersession risk, architecture alignment, and governance sustainability. Produces a four-tier classification (INVEST / EVALUATE-FURTHER / CONTRIBUTE-CAUTIOUSLY / AVOID) to guide resource allocation decisions before committing engineering effort.

Teams using evaluate-agent-framework should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/evaluate-agent-framework/SKILL.md --create-dirs "https://raw.githubusercontent.com/pjt222/agent-almanac/main/i18n/caveman-lite/skills/evaluate-agent-framework/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/evaluate-agent-framework/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How evaluate-agent-framework Compares

Feature / Agentevaluate-agent-frameworkStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Assess an open-source agent framework for investment readiness by evaluating community health, supersession risk, architecture alignment, and governance sustainability. Produces a four-tier classification (INVEST / EVALUATE-FURTHER / CONTRIBUTE-CAUTIOUSLY / AVOID) to guide resource allocation decisions before committing engineering effort.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Evaluate Agent Framework

Structured assessment of an open-source agent framework's investment readiness. The novel value is in Steps 2-3: quantifying community health through contribution survival rates and measuring supersession risk — the most common reason external engineering effort is wasted. The final classification (INVEST / EVALUATE-FURTHER / CONTRIBUTE-CAUTIOUSLY / AVOID) calibrates resource allocation before committing development cycles.

## When to Use

- Evaluating whether to adopt an agent framework for production use
- Assessing dependency risk on a framework your project relies on
- Deciding whether to contribute engineering effort to an external project
- Comparing competing frameworks for a build-vs-adopt decision
- Re-evaluating a framework after a major release, governance change, or acquisition

## Inputs

- **Required**: `framework_url` — GitHub URL of the framework repository
- **Optional**:
  - `comparison_frameworks` — list of alternative framework URLs to benchmark against
  - `use_case` — intended use case for architecture alignment assessment (e.g., "multi-agent orchestration", "tool-use pipelines")
  - `contribution_budget` — planned engineering hours, for calibrating the investment tier

## Procedure

### Step 1: Gather Framework Census

Collect foundational data about the project's size, activity, and landscape position before deeper analysis.

1. Fetch and read `README.md`, `CONTRIBUTING.md`, `LICENSE`, and any architecture docs (`docs/`, `ARCHITECTURE.md`)
2. Collect quantitative metrics:
   - Stars, forks, open issues, open PRs: `gh repo view <repo> --json stargazerCount,forkCount,issues,pullRequests`
   - Dependent repositories: check GitHub's "Used by" count or `gh api repos/<owner>/<repo>/dependents`
   - Release cadence: `gh release list --limit 10` — note frequency and whether releases follow semver
3. Calculate bus factor: identify top 5 contributors by commit count over the last 12 months. If the top contributor accounts for >60% of commits, bus factor is critically low
4. Map landscape position:
   - **Pioneer**: first mover, defines the category (high influence, high supersession risk to followers)
   - **Fast-follower**: launched within 6 months of pioneer, iterating on the concept
   - **Late entrant**: arrived after the category stabilized, competing on features or governance
5. If `comparison_frameworks` is provided, gather the same metrics for each alternative

**Got:** Census table with stars, forks, dependents, release cadence, bus factor, and landscape position for the target (and comparisons if provided).

**If fail:** If the repository is private or API-rate-limited, fall back to manual README analysis. If metrics are unavailable (e.g., self-hosted GitLab), note the gap and proceed with qualitative assessment.

### Step 2: Assess Community Health

Quantify whether the project welcomes, supports, and retains external contributors.

1. Calculate the **external contribution survival rate**:
   - Pull the last 50 closed PRs: `gh pr list --state closed --limit 50 --json author,mergedAt,closedAt,labels`
   - Classify each PR author as internal (org member) or external
   - Compute: `survival_rate = merged_external_PRs / total_external_PRs`
   - Healthy threshold: >50% survival rate; concerning: <30%
2. Measure responsiveness:
   - **Issue first-response time**: median time from issue creation to first maintainer comment
   - **PR merge latency**: median time from PR open to merge for external PRs
   - Healthy: <7 days first-response, <30 days merge; concerning: >30 days first-response
3. Assess contributor diversity:
   - External/internal contributor ratio over last 6 months
   - Number of unique external contributors with >=2 merged PRs (repeat contributors signal a healthy ecosystem)
4. Check governance artifacts:
   - `CONTRIBUTING.md` exists and is actionable (not just "submit a PR")
   - `CODE_OF_CONDUCT.md` exists
   - Governance docs describe decision-making process
   - Issue/PR templates guide contributors

**Got:** Community health scorecard with survival rate, response times, diversity ratio, and governance artifact checklist.

**If fail:** If PR data is insufficient (new project with <20 closed PRs), note the sample size limitation and weight other signals more heavily. If the project uses a non-GitHub platform, adapt the queries to that platform's API.

### Step 3: Calculate Supersession Risk

Determine how likely it is that external contributions will be rendered obsolete by internal development — the single biggest risk for framework adopters and contributors.

1. Sample the last 50-100 merged external PRs (or all if fewer exist)
2. For each merged external PR, check whether the contributed code was later:
   - **Reverted**: explicit revert commit referencing the PR
   - **Rewritten**: same file/module substantially changed within 90 days by an internal contributor
   - **Obsoleted**: feature removed or replaced in a subsequent release
3. Calculate: `supersession_rate = (reverted + rewritten + obsoleted) / total_merged_external`
4. Map the published roadmap (if available) against areas where external contributors are active:
   - High overlap = high supersession risk (internals will build over external work)
   - Low overlap = lower supersession risk (externals fill gaps internals won't)
5. Check for "contribution traps": areas that look contribution-friendly but are scheduled for internal rewrite
6. Reference benchmark: NemoClaw analysis showed 71% external PRs superseded within 6 months — use as a calibration point

**Got:** Supersession rate as a percentage, with breakdown by type (reverted/rewritten/obsoleted). Roadmap overlap assessment.

**If fail:** If commit history is shallow or squash-merged (losing attribution), estimate supersession by comparing external PR file paths against files changed in subsequent releases. Note reduced confidence in the estimate.

### Step 4: Evaluate Architecture Alignment

Assess whether the framework's architecture supports your use case without excessive lock-in.

1. Map extension points:
   - Plugin/extension API: does the framework expose a documented plugin interface?
   - Configuration surface: can behavior be customized without forking?
   - Hook/callback system: can you intercept and modify framework behavior at key points?
2. Assess lock-in risk:
   - **Rewrite cost**: estimate engineering effort to migrate away (days/weeks/months)
   - **Data portability**: can data/state be exported in standard formats?
   - **Standard compliance**: does the framework use open standards (agentskills.io, MCP, A2A) or proprietary protocols?
3. Evaluate API stability:
   - Count breaking changes per major release (CHANGELOG, migration guides)
   - Check for deprecation policy (advance warning before removal)
   - Assess semver compliance (breaking changes only in major versions)
4. Check alignment with your specific use case:
   - If `use_case` is provided, evaluate whether the framework's architecture naturally supports it
   - Identify any architectural mismatches that would require workarounds
5. Evaluate interoperability:
   - agentskills.io compatibility (skill model alignment)
   - MCP support (tool integration)
   - A2A protocol support (agent-to-agent communication)

**Got:** Architecture alignment report with extension point inventory, lock-in risk assessment (low/medium/high), API stability score, and use-case fit evaluation.

**If fail:** If architecture documentation is sparse, derive the assessment from code structure and public API surface. If the framework is too young for stability history, note this and weight governance signals more heavily.

### Step 5: Assess Governance and Sustainability

Evaluate whether the project's governance model supports long-term viability and fair treatment of external contributors.

1. Classify governance model:
   - **BDFL** (Benevolent Dictator for Life): single decision-maker — fast decisions, bus factor risk
   - **Committee/Core team**: distributed decision-making — slower but more resilient
   - **Foundation-backed**: formal governance (Apache, Linux Foundation, CNCF) — most sustainable
   - **Corporate-controlled**: single company drives development — watch for rug-pull risk
2. Assess funding and sustainability:
   - Funding sources: VC-backed, corporate-sponsored, grants, community-funded, unfunded
   - Full-time maintainer count: >=2 is healthy; 0 is a red flag
   - Revenue model (if any): how does the project sustain itself?
3. Evaluate contributor protections:
   - License type: permissive (MIT, Apache-2.0) vs copyleft (GPL) vs custom
   - CLA requirements: does signing a CLA transfer rights that disadvantage contributors?
   - Contributor recognition: are external contributors credited in releases, changelogs, docs?
4. Check security posture:
   - Security disclosure policy (`SECURITY.md` or equivalent)
   - Median time from CVE disclosure to patch release
   - Dependency update practices (Dependabot, Renovate, manual)
5. Assess trajectory:
   - Is the governance model evolving (e.g., moving toward a foundation)?
   - Has there been a recent leadership change, acquisition, or relicensing?
   - Are there public conflicts between maintainers and contributors?

**Got:** Governance assessment with model classification, sustainability rating (sustainable/at-risk/critical), contributor protection evaluation, and security posture summary.

**If fail:** If governance information is undocumented, treat the absence itself as a yellow flag. Check for implicit governance by examining who merges PRs, who closes issues, and who makes release decisions.

### Step 6: Classify Investment Readiness

Synthesize all findings into a four-tier classification with specific justifications and actionable recommendations.

1. Score each dimension (1-5 scale):
   - **Community health**: survival rate, responsiveness, diversity
   - **Supersession risk**: rate, roadmap overlap, contribution traps (invert: lower is better)
   - **Architecture alignment**: extension points, lock-in, stability, use-case fit
   - **Governance sustainability**: model, funding, protections, security
2. Apply classification thresholds:
   - **INVEST** (all dimensions >=4): Healthy community, low supersession (<20%), aligned architecture, sustainable governance. Safe to adopt and contribute engineering effort.
   - **EVALUATE-FURTHER** (mixed, no dimension <2): Mixed signals requiring specific follow-ups. Document what needs clarification and set a re-evaluation date.
   - **CONTRIBUTE-CAUTIOUSLY** (any dimension 2, none <2): High supersession (>40%) or governance concerns. Limit contributions to explicitly requested work, maintainer-approved scope, or plugin/extension development that is decoupled from core.
   - **AVOID** (any dimension 1): Critical red flags — abandoned project, hostile to externals (survival rate <15%), incompatible license, or imminent rug-pull indicators. Do not invest engineering effort.
3. Write the classification report:
   - Lead with the tier classification and one-sentence rationale
   - Summarize each dimension score with key evidence
   - If `contribution_budget` was provided, recommend how to allocate those hours given the tier
   - For EVALUATE-FURTHER, list specific questions that need answers and propose a timeline
   - For CONTRIBUTE-CAUTIOUSLY, specify which contribution types are safe (plugins, docs, tests) vs risky (core features)
4. If `comparison_frameworks` were evaluated, produce a comparison matrix ranking all frameworks

**Got:** Classification report with tier, dimension scores, evidence summary, and actionable recommendations tailored to the investment context.

**If fail:** If data gaps prevent confident classification, default to EVALUATE-FURTHER with explicit documentation of what data is missing and how to obtain it. Never default to INVEST when uncertain.

## Validation

- [ ] Census data collected: stars, forks, dependents, release cadence, bus factor, landscape position
- [ ] Community health quantified: survival rate, response times, contributor diversity, governance artifacts
- [ ] Supersession risk calculated with breakdown by type (reverted/rewritten/obsoleted)
- [ ] Architecture alignment assessed: extension points, lock-in risk, API stability, use-case fit
- [ ] Governance evaluated: model, funding, contributor protections, security posture
- [ ] Classification produced: one of INVEST / EVALUATE-FURTHER / CONTRIBUTE-CAUTIOUSLY / AVOID
- [ ] Each dimension score justified with specific evidence from the analysis
- [ ] Recommendations are actionable and calibrated to the contribution budget (if provided)
- [ ] Data gaps and confidence limitations explicitly documented

## Pitfalls

- **Confusing popularity with health**: High stars but low contributor diversity means a single point of failure. A 50k-star project with one maintainer is less healthy than a 2k-star project with 15 active contributors.
- **Ignoring supersession risk**: The most common reason external contributions fail. A welcoming community means nothing if internal development routinely overwrites external work.
- **Over-weighting architecture without checking governance**: A beautifully designed framework can still fail if the governance model is unsustainable or hostile to externals.
- **Treating EVALUATE-FURTHER as AVOID**: Mixed signals require investigation, not rejection. Set a concrete re-evaluation date and list the specific questions to answer.
- **Snapshot bias**: All metrics are point-in-time. A declining project with great current metrics is worse than an improving project with mediocre current metrics. Always check the trend direction over 6-12 months.
- **CLA complacency**: Some CLAs transfer copyright to the project owner, meaning your contributions become their proprietary asset. Read the CLA text, not just the checkbox.
- **Anchoring on a single framework**: Without comparison frameworks, any project looks either great or terrible. Always benchmark against at least one alternative, even informally.

## Related Skills

- [polish-claw-project](../polish-claw-project/SKILL.md) — contribution workflow this assessment informs
- [review-software-architecture](../review-software-architecture/SKILL.md) — used in Step 4 for architecture evaluation
- [forage-solutions](../forage-solutions/SKILL.md) — alternative framework discovery for comparison
- [search-prior-art](../search-prior-art/SKILL.md) — landscape mapping and prior work analysis
- [security-audit-codebase](../security-audit-codebase/SKILL.md) — security posture assessment referenced in Step 5
- [assess-ip-landscape](../assess-ip-landscape/SKILL.md) — license and IP risk analysis

Related Skills

evaluate-levitation-mechanism

9
from pjt222/agent-almanac

Evaluate and compare levitation mechanisms for a given application through a structured trade study. Covers magnetic (passive diamagnetic, active feedback, superconducting), acoustic (standing wave, phased array), aerodynamic (hovercraft, air bearings, Coanda effect), and electrostatic (Coulomb suspension, ion traps) mechanisms. Use when selecting the most appropriate levitation approach for transport, sample handling, display, bearings, or precision measurement applications.

evaluate-boolean-expression

9
from pjt222/agent-almanac

Evaluate and simplify Boolean expressions using truth tables, algebraic laws (De Morgan, distributive, absorption, idempotent, consensus), and Karnaugh maps for up to six variables. Use when you need to reduce a Boolean expression to its minimal sum-of-products or product-of-sums form, verify logical equivalence between two expressions, or prepare a minimized function for gate-level implementation.

skill-name-here

9
from pjt222/agent-almanac

One to three sentences describing what this skill accomplishes, followed by key activation triggers. This field is the primary mechanism agents use to decide whether to activate the skill — it is read during discovery before the full body is loaded. Start with a verb. Include the most important "when to use" conditions inline. Max 1024 characters.

write-vignette

9
from pjt222/agent-almanac

Create R package vignettes using R Markdown or Quarto. Covers vignette setup, YAML configuration, code chunk options, building and testing, and CRAN requirements for vignettes. Use when adding a Getting Started tutorial, documenting complex workflows spanning multiple functions, creating domain-specific guides, or when CRAN submission requires user-facing documentation beyond function help pages.

write-validation-documentation

9
from pjt222/agent-almanac

Write IQ/OQ/PQ validation documentation for computerized systems in regulated environments. Covers protocols, reports, test scripts, deviation handling, and approval workflows. Use when validating R or other software for regulated use, preparing for a regulatory audit, documenting qualification of computing environments, or creating and updating validation protocols and reports for new or re-qualified systems.

write-testthat-tests

9
from pjt222/agent-almanac

Write comprehensive testthat (edition 3) tests for R package functions. Covers test organization, expectations, fixtures, mocking, snapshot tests, parameterized tests, and achieving high coverage. Use when adding tests for new package functions, increasing test coverage for existing code, writing regression tests for bug fixes, or setting up test infrastructure for a package that lacks it.

write-standard-operating-procedure

9
from pjt222/agent-almanac

Write a GxP-compliant Standard Operating Procedure (SOP). Covers regulatory SOP template structure (purpose, scope, definitions, responsibilities, procedure, references, revision history), approval workflow design, periodic review scheduling, and operational procedures for system use. Use when a new validated system requires operational procedures, when existing informal procedures need formalisation, when an audit finding cites missing procedures, when a change control triggers SOP updates, or when periodic review identifies outdated procedural content.

write-roxygen-docs

9
from pjt222/agent-almanac

Write roxygen2 documentation for R package functions, datasets, and classes. Covers all standard tags, cross-references, examples, and generating NAMESPACE entries. Follows tidyverse documentation style. Use when adding documentation to new exported functions, documenting internal helpers or datasets, documenting S3/S4/R6 classes and methods, or fixing documentation-related R CMD check notes.

write-incident-runbook

9
from pjt222/agent-almanac

Create structured incident runbooks with diagnostic steps, resolution procedures, escalation paths, and communication templates for effective incident response. Use when documenting response procedures for recurring alerts, standardizing incident response across an on-call rotation, reducing MTTR with clear diagnostic steps, creating training materials for new team members, or linking alert annotations directly to resolution procedures.

write-helm-chart

9
from pjt222/agent-almanac

Create production-ready Helm charts for Kubernetes application deployment with templating, values management, chart dependencies, hooks, and testing. Covers chart structure, Go template syntax, values.yaml design, chart repositories, versioning, and best practices for maintainable and reusable charts. Use when packaging a Kubernetes application for repeatable deployments, parameterizing manifests for multiple environments, managing complex multi-component applications with dependencies, or standardizing deployment practices with versioned rollback capability across teams.

write-continue-here

9
from pjt222/agent-almanac

Write a CONTINUE_HERE.md file capturing current session state so a fresh Claude Code session can pick up where this one left off. Covers assessing recent work, structuring the continuation file with objective, completed, in-progress, next-steps, and context sections, and verifying the file is actionable. Use when ending a session with unfinished work, handing off context between sessions, or preserving task state that git alone cannot capture.

write-claude-md

9
from pjt222/agent-almanac

Create an effective CLAUDE.md file that provides project-specific instructions to AI coding assistants. Covers structure, common sections, do/don't patterns, and integration with MCP servers and agent definitions. Use when starting a new project where AI assistants will be used, improving AI behavior on an existing project, documenting project conventions and constraints, or integrating MCP servers or agent definitions into a project workflow.