Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Plant Trait Target Deriver

ASecurity

Use this skill when you need to derive, from web-sourced evidence, typical values for a named plant's annual GPP, LAI, specific LAI or specific leaf area, Rubisco Vcmax at 25oC, Jmax at 25oC, root-to-shoot ratio, rooting depth, leaf protein nitrogen, and leaf chlorophyll nitrogen.

3 stars
0 votes
0 copies
1 views
Added 9/19/2026
research

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add bioepic-data/ecosim-agent --skill plant-trait-target-deriver --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Plant Trait Target Deriver?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Plant Trait Target Deriver
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/bioepic-data-plant-trait-target-deriver/badge)](https://www.skillsdirectory.com/skills/bioepic-data-plant-trait-target-deriver)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: plant-trait-target-deriver
description: Use this skill when you need to derive, from web-sourced evidence, typical values for a named plant's annual GPP, LAI, specific LAI or specific leaf area, Rubisco Vcmax at 25oC, Jmax at 25oC, root-to-shoot ratio, rooting depth, leaf protein nitrogen, and leaf chlorophyll nitrogen.
---

# Plant Trait Target Deriver

## Use When

Use this skill when the user gives a plant name such as `Limber Pine`, `maize`, or `switchgrass` and wants a compact trait summary with defensible typical values.

## Target outputs

Derive typical values for:

- annual `GPP`
- `LAI`
- specific `LAI` or specific leaf area
- Rubisco `Vcmax` at 25oC
- `Jmax` at 25oC
- root-to-shoot ratio
- rooting depth
- leaf protein nitrogen concentration
- leaf chlorophyll nitrogen concentration

## Output expectations

Return a compact table or JSON object with:

- `plant_name`
- `accepted_scientific_name`
- `growth_form`
- one row per target trait
- `typical_value`
- `units`
- `provenance`
  - `species-sourced`
  - `genus-inferred`
  - `functional-type-inferred`
  - `no-defensible-estimate`
- `rationale`
- `source_links`

## Required behavior

1. Resolve the accepted scientific name first.
2. Determine the growth form:
   - tree
   - shrub
   - grass
   - crop grass
   - forb/herb
3. Search the web using primary and peer-reviewed sources.
4. Prefer species-level values.
5. If species-level values are unavailable, fall back in order:
   - same species in a closely related study system
   - same genus
   - same functional type
6. Label the provenance explicitly.
7. Never present a guessed value as directly measured.

## Unit conventions

Use these default units unless the user requests otherwise:

- annual `GPP`: `gC m-2 yr-1`
- `LAI`: `m2 leaf m-2 ground`
- specific `LAI` / specific leaf area: `m2 gC-1`
  - this is the preferred EcoSIM-facing unit
  - if source values use dry-mass units such as `m2 kg-1 DW` or `cm2 g-1 DW`, convert to `m2 gC-1` only when a defensible carbon fraction is available
  - if conversion is not defensible, report the source value separately and state that the EcoSIM-unit conversion is unresolved
- `Vcmax25`: `umol m-2 s-1`
- `Jmax25`: `umol m-2 s-1`
- root-to-shoot ratio: `kg root kg-1 shoot` or unitless mass ratio
- rooting depth: `m`
- leaf protein nitrogen concentration: `g N g-1 leaf` or `mg N g-1 leaf`
- leaf chlorophyll nitrogen concentration: `g N g-1 leaf` or equivalent chlorophyll-N fraction

If a source reports nitrogen on an area basis rather than mass basis, preserve the source unit unless a clean conversion is possible from the same source.

## Search strategy

Before doing substantial work, read [references/trait_derivation_guide.md](references/trait_derivation_guide.md).

Suggested sequence:

1. Taxonomy and growth form:
   - Kew POWO
   - USDA or species-profile sources
2. Productivity and canopy structure:
   - flux, forestry, crop, or ecological studies
3. Photosynthetic traits:
   - peer-reviewed gas-exchange or trait papers
4. Rooting traits:
   - species reviews, crop references, root trait papers
5. Nitrogen allocation traits:
   - leaf economics or crop physiology papers

## Trait-specific guidance

- `GPP`
  - Prefer site- or ecosystem-specific annual ranges for the target species or strongly species-dominated stands.
  - If only NPP or biomass increment is available, do not silently convert to GPP without a defensible method.

- `LAI`
  - Prefer field studies, flux-site metadata, crop handbooks, or forest canopy studies.

- specific `LAI` / SLA
  - Treat this as specific leaf area unless the user clearly means something else.
  - State the interpretation explicitly.
  - Prefer the final reported value in `m2 gC-1`.

- `Vcmax25` and `Jmax25`
  - Prefer values already standardized to 25oC.
  - If a paper reports temperature-response parameters rather than `Vcmax25`/`Jmax25`, do not back-calculate unless the paper provides the needed model clearly.

- root-to-shoot ratio
  - Prefer whole-plant or stand-level biomass allocation studies.

- rooting depth
  - Prefer effective or typical maximum rooting depth from species or crop references.
  - Distinguish between observed depth and model-assumed depth when possible.

- leaf protein nitrogen
  - Accept direct protein-N measurements.
  - If only total leaf N is available, do not relabel it as protein N unless the source distinguishes the fraction.

- leaf chlorophyll nitrogen
  - Prefer explicit chlorophyll-N or nitrogen-allocation measurements.
  - If only chlorophyll concentration is reported without nitrogen partitioning, do not convert unless a cited relationship supports it.

## Deliverable format

Prefer a flat table with these columns:

- `trait`
- `value`
- `units`
- `provenance`
- `source`
- `notes`

If the user asks for machine-readable output, emit JSON using the schema in [references/trait_output_schema.md](references/trait_output_schema.md).

## Notes

- This skill is intentionally narrow and should not attempt to derive the entire EcoSIM parameter set.
- Be conservative with `Vcmax25`, `Jmax25`, protein N, and chlorophyll N because these are often study-specific.
- Use exact source links in the final answer whenever web evidence is used.

Attribution

bioepic-databioepic-data
View sourceMore from bioepic-data →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Competitor Analysis

This skill provides comprehensive analysis of competitor SEO and GEO strategies, revealing what's working in your market and identifying opportunities to outperform the competition.

1823 votes

Deep Research

Universal deep research agent team. 13-agent pipeline for rigorous academic research on any topic. 8 modes: full research, quick brief, paper review, lit-review, fact-check, three-way literature scan, Socratic guided research dialogue, and systematic review with optional meta-analysis. Covers research question formulation, Socratic mentoring, methodology design, systematic literature search, source verification, cross-source synthesis, risk of bias assessment, meta-analysis, APA 7.0 report co...

486982 votes

Paperclip Distill

Use when an operation issue is a Paperclip cursor-window, distill, or backfill — `operationType: "distill"` or `"backfill"` and the body references a Paperclip source bundle for a project or root issue. Turn raw Paperclip activity into a wiki-insightful project page, decisions log, and history note. This skill exists specifically to replace the stiff, datestamp-heavy templated output that the deterministic distiller produces.

805541 votes

Academic Pipeline

Orchestrator for the full academic research pipeline: research -> write -> integrity check -> review -> revise -> re-review -> re-revise -> final integrity check -> finalize. Coordinates deep-research, academic-paper, and academic-paper-reviewer into a seamless 10-stage workflow with mandatory, coverage-bounded integrity checks, two-stage peer review, and auditable quality-assurance artifacts. Triggers on: academic pipeline, research to paper, full paper workflow, paper pipeline, end-to-end p...

486981 votes

Exa Search

Semantic search, similar content discovery, and structured research using Exa API

304951 votes
View all in research →