Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,475
总 Skills
36.2M
总安装量
2,446
贡献者
# Skill 仓库 描述 安装量
6151 elasticsearch-security-troubleshooting elastic/agent-skills
Elasticsearch Security Troubleshooting Diagnose and resolve common Elasticsearch security issues. This skill provides a structured triage workflow for authentication failures, authorization errors, TLS problems, API key issues, role mapping mismatches, Kibana login failures, and license-expiry lockouts. For authentication methods and API key management, see the elasticsearch-authn skill. For roles, users, and role mappings, see the elasticsearch-authz skill. For license management, see the elast...
356
6152 github-traffic zc277584121/marketing-skills
Skill: GitHub Traffic Fetch and analyze GitHub repository traffic data — page views, git clones, referral sources, popular pages, and star growth. Optionally generate trend charts as PNG images. Prerequisites: gh CLI must be installed and authenticated Push (write) access to the target repository is required — GitHub's Traffic API does not work with read-only access matplotlib is optional (for PNG chart generation; falls back to ASCII if unavailable) When to Use The user asks about repository tr...
356
6153 nextjs-code-review giuseppe-trisciuoglio/developer-kit
Next.js Code Review Overview This skill provides structured, comprehensive code review for Next.js applications built with the App Router. It evaluates code against Next.js best practices, React Server Component patterns, caching strategies, and production-readiness criteria. The review produces actionable findings categorized by severity (Critical, Warning, Suggestion) with concrete code examples for improvements. This skill delegates to the typescript-software-architect-review agent for deep a...
356
6154 ui-components yonatangross/orchestkit
UI Components Comprehensive patterns for building accessible UI component libraries with shadcn/ui and Radix Primitives. Covers CVA variants, OKLCH theming, cn() utility, component extension, asChild composition, dialog/menu patterns, and data-attribute styling. Each category has individual rule files in rules/ loaded on-demand. Quick Reference Category Rules Impact When to Use shadcn/ui 3 HIGH CVA variants, component customization, form patterns, data tables Radix Primitives 3 HIGH Dialogs, pol...
355
6155 long-context davila7/claude-code-templates
Long Context: Extending Transformer Context Windows When to Use This Skill Use Long Context techniques when you need to: Process long documents (32k, 64k, 128k+ tokens) with transformer models Extend context windows of pre-trained models (LLaMA, Mistral, etc.) Implement efficient positional encodings (RoPE, ALiBi) Train models with length extrapolation capabilities Deploy models that handle variable-length inputs efficiently Fine-tune existing models for longer contexts with minimal compute K...
355
6156 hotkey lobehub/lobe-chat
Adding Keyboard Shortcuts Guide Steps to Add a New Hotkey 1. Update Hotkey Constant In src/types/hotkey.ts : export const HotkeyEnum = { // existing... ClearChat : 'clearChat' , // Add new } as const ; 2. Register Default Hotkey In src/const/hotkeys.ts : import { KeyMapEnum as Key , combineKeys } from '@lobehub/ui' ; export const HOTKEYS_REGISTRATION : HotkeyRegistration = [ { group : HotkeyGroupEnum . Conversation , id : HotkeyEnum . ClearChat , keys : combineKeys ( [ Key . Mod , Key . Shift , ...
355
6157 cc-skill-frontend-patterns sickn33/antigravity-awesome-skills
Frontend Development Patterns Modern frontend patterns for React, Next.js, and performant user interfaces. Component Patterns Composition Over Inheritance // ✅ GOOD: Component composition interface CardProps { children : React . ReactNode variant ? : 'default' | 'outlined' } export function Card ( { children , variant = 'default' } : CardProps ) { return < div className = { ` card card- ${ variant } ` } > { children } < / div > } export function CardHeader ( { children } : { children : React . R...
355
6158 instagram-automation sickn33/antigravity-awesome-skills
Instagram Automation via Rube MCP Automate Instagram operations through Composio's Instagram toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Instagram connection via RUBE_MANAGE_CONNECTIONS with toolkit instagram Always call RUBE_SEARCH_TOOLS first to get current tool schemas Instagram Business or Creator account required (personal accounts not supported) Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuratio...
355
6159 image-gen jezweb/claude-skills
When to Use User wants to generate an AI image from a text description User says "generate image", "draw", "create picture", "配图" User says "生成图片", "画一张", "AI图" User needs a cover image, illustration, or concept art When NOT to Use User wants to create audio content (use /podcast , /speech ) User wants to create a video (use /explainer ) User wants to edit an existing image (not supported) User wants to extract content from a URL (use /content-parser ) Purpose Generate AI images using the Listen...
354
6160 jest-typescript bobmatnyc/claude-mpm-skills
Jest + TypeScript - Industry Standard Testing Overview Jest is the industry-standard testing framework with 70% market share, providing a mature, battle-tested ecosystem for TypeScript projects. It offers comprehensive testing capabilities with built-in snapshot testing, mocking, and coverage reporting. Key Features: 🏆 Industry Standard: 70% market share, widely adopted 📦 All-in-One: Test runner, assertions, mocks, coverage in one package 📸 Snapshot Testing: Built-in snapshot support for UI t...
354
6161 firecrawl-scraper sickn33/antigravity-awesome-skills
Firecrawl Web Scraper Skill Status : Production Ready Last Updated : 2026-01-20 Official Docs : https://docs.firecrawl.dev API Version : v2 SDK Versions : firecrawl-py 4.13.0+, @mendable/firecrawl-js 4.11.1+ What is Firecrawl? Firecrawl is a Web Data API for AI that turns websites into LLM-ready markdown or structured data. It handles: JavaScript rendering - Executes client-side JavaScript to capture dynamic content Anti-bot bypass - Gets past CAPTCHA and bot detection systems Format conversion ...
354
6162 kreuzberg kreuzberg-dev/kreuzberg
Kreuzberg Document Extraction Kreuzberg is a high-performance document intelligence library with a Rust core and native bindings for Python, Node.js/TypeScript, Ruby, Go, Java, C, PHP, and Elixir. It extracts text, tables, metadata, and images from 75+ file formats including PDF, Office documents, images (with OCR), HTML, email, archives, and academic formats. Use this skill when writing code that: Extracts text or metadata from documents Performs OCR on scanned documents or images Batch-process...
354
6163 react-flow-advanced existential-birds/beagle
Advanced React Flow Patterns Sub-Flows (Nested Nodes) const nodes = [ // Parent (group) node { id: 'group-1', type: 'group', position: { x: 0, y: 0 }, style: { width: 400, height: 300, padding: 10 }, data: { label: 'Group' }, }, // Child nodes { id: 'child-1', parentId: 'group-1', // Reference parent extent: 'parent', // Constrain to parent bounds expandParent: true, // Auto-expand parent if dragged to edge position: { x:...
354
6164 framer-motion pproenca/dot-skills
Framer Motion / Motion Animation Guidelines You are an expert in Framer Motion (now Motion), React, and TypeScript. Follow these guidelines when creating animations. Core Principles Import from the Correct Package Use import { motion } from "motion/react" for React projects (not "framer-motion" - this is outdated) The library was renamed from Framer Motion to Motion Always use the latest Motion API Performance-First Approach Animate transform properties (x, y, scale, rotate) and opacity for be...
354
6165 fpf:query neolabhq/context-engineering-kit
Query Knowledge Search the FPF knowledge base and display hypothesis details with assurance information. Action (Run-Time) Search .fpf/knowledge/ and .fpf/decisions/ by user query. For each found hypothesis , display: Basic info: title, layer (L0/L1/L2), kind, scope If layer >= L1: read audit section for R_eff If has dependencies: show dependency graph Evidence summary if exists Present results in table format. Search Locations Location Contents .fpf/knowledge/L0/ Proposed hypotheses .fpf/knowle...
354
6166 phoenix-cli arize-ai/phoenix
Phoenix CLI Invocation px < resource > < action > if installed globally npx @arizeai/phoenix-cli < resource > < action > no install required The CLI uses singular resource commands with subcommands like list and get : px trace list px trace get < trace-id > px span list px dataset list px dataset get < name > Setup export PHOENIX_HOST = http://localhost:6006 export PHOENIX_PROJECT = my-project export PHOENIX_API_KEY = your-api-key if auth is enabled Always use --format raw --no-progress when ...
354
6167 auto-douyin zrt-ai-lab/opencode-skills
抖音视频自动发布技能 这个技能用于自动化发布视频到抖音创作者中心。 使用场景 用户需要发布视频到抖音时 用户说"发抖音"、"上传抖音"、"发布到抖音"时 用户有视频文件需要分发到抖音平台时 技术原理 基于 Playwright 浏览器自动化,模拟真实用户操作抖音创作者中心( https://creator.douyin.com): 首次使用需扫码登录,保存 Cookie 后续使用 Cookie 自动登录 自动化填充标题、话题、封面等信息 支持定时发布 前置条件 1. 安装依赖 pip install playwright playwright install chromium 2. 首次登录获取 Cookie python .opencode/skills/auto-douyin/scripts/get_cookie.py 执行后会打开浏览器,使用抖音 APP 扫码登录,登录成功后 Cookie 会自动保存。 工作流程 第一步:确认登录状态 检查 Cookie 是否存在且有效: python .opencode/skills/auto-douyin/scripts/check_cook...
354
6168 flash runpod/skills
Runpod Flash Write code locally, test with flash run (dev server at localhost:8888), and flash automatically provisions and deploys to remote GPUs/CPUs in the cloud. Endpoint handles everything. Setup pip install runpod-flash requires Python >=3.10 auth option 1: browser-based login (saves token locally) flash login auth option 2: API key via environment variable export RUNPOD_API_KEY = your_key flash init my-project scaffold a new project in ./my-project CLI flash run start local dev serve...
354
6169 cloudflare-turnstile jezweb/claude-skills
Cloudflare Turnstile Status: Production Ready ✅ Last Updated: 2026-01-21 Dependencies: None (optional: @marsidev/react-turnstile for React) Latest Versions: @marsidev/react-turnstile@1.4.1, turnstile-types@1.2.3 Recent Updates (2025): December 2025: @marsidev/react-turnstile v1.4.1 fixes race condition in script loading August 2025: v1.3.0 adds rerenderOnCallbackChange prop for React closure issues March 2025: Upgraded Turnstile Analytics with TopN statistics (7 dimensions: hostnames, browser...
353
6170 popup-cro sickn33/antigravity-awesome-skills
Popup CRO You are an expert in popup and modal optimization. Your goal is to create popups that convert without annoying users or damaging brand perception. Initial Assessment Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Before providing recommendations, understand: Popu...
353
6171 information-architecture aj-geddes/useful-ai-prompts
This skill defines the structural skeleton of a product or site. It sits between the design brief and the build. Run this after the brief is written and before tasks are created. Example prompts "Plan the IA for this app before I start building" "Map out the navigation and page structure" "I need to organize the content for a documentation site" "Define user flows for the onboarding experience" Process Look for an existing design brief at .design/*/DESIGN_BRIEF.md . If multiple subfolders exist,...
353
6172 felo-slides felo-inc/felo-skills
Felo Slides Skill When to Use Trigger this skill for requests about creating presentation files: Create/generate slides from a topic or outline Turn notes into a PPT deck Build a presentation with a page count requirement Export presentation content into a shareable slide link Trigger keywords: Chinese prompts about making slides or presentations English: slides, PPT, presentation deck, generate presentation Explicit commands: /felo-slides , "use felo slides" Do NOT use this skill for: Real-time...
353
6173 uni-helper uni-helper/skills
The skill is based on uni-helper documentation, generated at 2026-01-30. uni-helper is an ecosystem of AI-powered development tools for uni-app, providing Vite plugins, utility libraries, TypeScript support, and development tools to enhance the uni-app development experience. Vite Plugins Topic Description Reference vite-plugin-uni-pages File-based routing system for uni-app with auto page discovery plugin-pages vite-plugin-uni-layouts Nuxt-like layouts system for uni-app plugin-layouts vite-plu...
353
6174 linear lobehub/lobe-chat
Linear Overview This skill provides a structured workflow for managing issues, projects & team workflows in Linear. It ensures consistent integration with the Linear MCP server, which offers natural-language project management for issues, projects, documentation, and team collaboration. Prerequisites Linear MCP server must be connected and accessible via OAuth Confirm access to the relevant Linear workspace, teams, and projects Required Workflow Follow these steps in order. Do not skip steps. St...
353
6175 rust-skill-creator actionbook/rust-skills
Rust Skill Creator Create dynamic skills for Rust crates and std library documentation. When to Use This skill handles requests to create skills for: Third-party crates (tokio, serde, axum, etc.) Rust standard library (std::sync, std::marker, etc.) Any Rust documentation URL Workflow 1. Identify the Target User Request Target Type URL Pattern "create tokio skill" Third-party crate docs.rs/tokio/latest/tokio/ "create Send trait skill" Std library doc.rust-lang.org/std/marker/trait.Send.html "...
353
6176 jianying-video-gen cclank/lanshu-waytovideo
剪映 AI 视频生成器 通过 Playwright 自动化操作剪映(xyq.jianying.com),使用 Seedance 2.0 模型生成 AI 视频。 前置条件 Python 3.9+ + playwright 已安装 Chromium 已通过 playwright install chromium 安装 cookies.json — 剪映登录凭证(从浏览器导出),放在脚本同目录下 pip install playwright && playwright install chromium 核心脚本 scripts/jianying_worker.py — 主自动化脚本 使用方式 文生视频 (T2V) python3 scripts/jianying_worker.py \ --cookies /path/to/cookies.json \ --output-dir /path/to/output \ --prompt "赛博朋克风格的长安城,飞行汽车穿梭在霓虹灯笼之间" \ --duration 10s \ --model "Seedance 2.0" 图生视频 (I2V) p...
353
6177 test-specialist ailabs-393/ai-labs-claude-skills
Test Specialist Overview Apply systematic testing methodologies and debugging techniques to JavaScript/TypeScript applications. This skill provides comprehensive testing strategies, bug analysis frameworks, and automated tools for identifying coverage gaps and untested code. Core Capabilities 1. Writing Test Cases Write comprehensive tests covering unit, integration, and end-to-end scenarios. Unit Testing Approach Structure tests using the AAA pattern (Arrange-Act-Assert): describe('Expens...
353
6178 opencli jackwener/opencli
opencli CLI tool that turns websites into CLI interfaces, reusing Chrome's login state. Zero credentials needed. Rule: use opencli for supported sites instead of playwright or browser tools. Syntax opencli < site > < command > [ --option value ] [ -f json ] Common flags (all commands): -f json — machine-readable output (preferred for parsing) --limit N — number of results (default varies, usually 20) -f table|json|yaml|md|csv Quick Examples 读取/浏览 opencli bilibili hot --limit 10 -f json opencli ...
352
6179 codspeed-setup-harness codspeedhq/codspeed
Setup Harness You are a performance engineer helping set up benchmarks and CodSpeed integration for a project. Your goal is to create useful, representative benchmarks and wire them up so CodSpeed can measure and track performance. Step 1: Analyze the project Before writing any benchmark code, understand what you're working with: Detect the language and build system : Look at the project structure, package files ( Cargo.toml , package.json , pyproject.toml , go.mod , CMakeLists.txt ), and source...
352
6180 codspeed-optimize codspeedhq/codspeed
Optimize You are an autonomous performance engineer. Your job is to iteratively optimize code using CodSpeed benchmarks and flamegraph analysis. You work in a loop: measure, analyze, change, re-measure, compare — and you keep going until there's nothing left to gain or the user tells you to stop. All measurements must go through CodSpeed. Always use the CodSpeed CLI ( codspeed run , codspeed exec ) to run benchmarks — never run benchmarks directly (e.g., cargo bench , pytest-benchmark , go test ...
352
6181 token-optimizer d4kooo/openclaw-token-memory-optimizer
Token Optimizer Skill This skill provides the procedural knowledge to keep your OpenClaw instance lean and efficient. Quick Reference Problem Solution Background tasks bloating context Cron isolation ( sessionTarget: "isolated" ) Reading entire history every turn Local RAG with memory_search Context exceeds 100k tokens Reset & Summarize protocol Finding old conversations Session transcript indexing Workflow 1: Periodic Task Isolation To prevent background tasks from bloating your main conversati...
352
6182 businessstrategy robdtaylor/personal-ai-infrastructure
BusinessStrategy Your MBA-trained strategic advisor with deep commercial awareness. Combines rigorous financial analysis with practical business acumen developed from real-world experience across startups, SMEs, and enterprise. Core Competencies Financial Analysis P&L Analysis: Revenue recognition, cost structures, margin analysis, operating leverage Cash Flow: Operating, investing, financing activities; working capital management; burn rate Balance Sheet: Asset utilization, capital structure,...
352
6183 context-window-management davila7/claude-code-templates
Context Window Management You're a context engineering specialist who has optimized LLM applications handling millions of conversations. You've seen systems hit token limits, suffer context rot, and lose critical information mid-dialogue. You understand that context is a finite resource with diminishing returns. More tokens doesn't mean better results—the art is in curating the right information. You know the serial position effect, the lost-in-the-middle problem, and when to summarize versus ...
352
6184 serving-llms-vllm davila7/claude-code-templates
vLLM - High-Performance LLM Serving Quick start vLLM achieves 24x higher throughput than standard transformers through PagedAttention (block-based KV cache) and continuous batching (mixing prefill/decode requests). Installation: pip install vllm Basic offline inference: from vllm import LLM, SamplingParams llm = LLM(model="meta-llama/Llama-3-8B-Instruct") sampling = SamplingParams(temperature=0.7, max_tokens=256) outputs = llm.generate(["Explain quantum computing"], sampling) print(outpu...
352
6185 redux vercel-labs/json-render
@json-render/redux Redux adapter for json-render's StateStore interface. Wire a Redux store (or Redux Toolkit slice) as the state backend for json-render. Installation npm install @json-render/redux @json-render/core @json-render/react redux or with Redux Toolkit (recommended): npm install @json-render/redux @json-render/core @json-render/react @reduxjs/toolkit Usage import { configureStore , createSlice } from "@reduxjs/toolkit" ; import { reduxStateStore } from "@json-render/redux" ; import {...
352
6186 fpf:status neolabhq/context-engineering-kit
Status Check Display the current state of the FPF knowledge base. Action (Run-Time) Check Directory Structure: Verify .fpf/ exists and contains required subdirectories. Count Hypotheses: List files in each knowledge layer: .fpf/knowledge/L0/ (Proposed) .fpf/knowledge/L1/ (Verified) .fpf/knowledge/L2/ (Validated) .fpf/knowledge/invalid/ (Rejected) Check Evidence Freshness: Scan .fpf/evidence/ for expired evidence. Count Decisions: List files in .fpf/decisions/ . Report to user. Status Report Form...
352
6187 mui softaworks/agent-toolkit
MUI v7 Patterns Purpose Material-UI v7 (released March 2025) patterns for component usage, styling with sx prop, theme integration, and responsive design. Note: MUI v7 breaking changes from v6: Deep imports no longer work - use package exports field onBackdropClick removed from Modal - use onClose instead All components now use standardized slots and slotProps pattern CSS layers support via enableCssLayer config (works with Tailwind v4) When to Use This Skill Styling components with MUI sx pr...
352
6188 tear-sheet anthropics/financial-services-plugins
Financial Tear Sheet Generator Generate audience-specific company tear sheets by pulling live data from S&P Capital IQ via the S&P Global MCP tools and formatting the result as a professional Word document. Style Configuration These are sensible defaults. To customize for your firm's brand, modify this section — common changes include swapping the color palette, changing the font (Calibri is standard at many banks), and updating the disclaimer text. Colors: Primary (header banner background, sec...
352
6189 lua mindrally/skills
Lua Development You are an expert in Lua programming with deep knowledge of tables, metatables, and game development patterns. Core Principles Write clear, concise Lua code that follows idiomatic patterns Leverage Lua's dynamic typing while maintaining code clarity Prioritize modularity and code reusability Focus on end-user experience across all code contributions Lua-Specific Practices Maximize local variables for performance improvements Leverage tables effectively for data structures Imple...
352
6190 xlsx ailabs-393/ai-labs-claude-skills
Requirements for Outputs All Excel files Professional Font Use a consistent, professional font (e.g., Arial, Times New Roman) for all deliverables unless otherwise instructed by the user Zero Formula Errors Every Excel model MUST be delivered with ZERO formula errors (REF!, DIV/0!, VALUE!, N/A, NAME?) Preserve Existing Templates (when updating templates) Study and EXACTLY match existing format, style, and conventions when modifying files Never impose standardized formatting on files with establi...
352
6191 openai-responses jezweb/claude-skills
OpenAI Responses API Status: Production Ready Last Updated: 2026-01-21 API Launch: March 2025 Dependencies: openai@6.16.0 (Node.js) or fetch API (Cloudflare Workers) What Is the Responses API? OpenAI's unified interface for agentic applications, launched March 2025. Provides stateful conversations with preserved reasoning state across turns. Key Innovation: Unlike Chat Completions (reasoning discarded between turns), Responses preserves the model's reasoning notebook, improving performance b...
351
6192 figma hoodini/ai-agents-skills
Figma MCP Use the Figma MCP server for Figma-driven implementation. For setup and debugging details (env vars, config, verification), see references/figma-mcp-config.md . Figma MCP Integration Rules These rules define how to translate Figma inputs into code for this project and must be followed for every Figma-driven change. Required flow (do not skip) Run get_design_context first to fetch the structured representation for the exact node(s). If the response is too large or truncated, run get_met...
351
6193 referral-program sickn33/antigravity-awesome-skills
Referral & Affiliate Programs You are an expert in viral growth and referral marketing. Your goal is to help design and optimize programs that turn customers into growth engines. Before Starting Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Gather this context (ask if not...
351
6194 supabase-postgres-best-practices davila7/claude-code-templates
Supabase Postgres Best Practices Comprehensive performance optimization guide for Postgres, maintained by Supabase. Contains rules across 8 categories, prioritized by impact to guide automated query optimization and schema design. When to Apply Reference these guidelines when: Writing SQL queries or designing schemas Implementing indexes or query optimization Reviewing database performance issues Configuring connection pooling or scaling Optimizing for Postgres-specific features Working with Row...
351
6195 screenshot-feature-extractor davila7/claude-code-templates
Screenshot Analyzer (Multi-Agent) Extract product features from UI screenshots using a coordinated multi-agent analysis pipeline. Core principle: Describe WHAT to build (features/interactions), NOT HOW (no tech stack). Multi-Agent Architecture This skill orchestrates 5 specialized agents for comprehensive analysis: ┌─────────────────┐ │ Coordinator │ │ (this skill) │ └────────┬────────┘ ...
351
6196 code-review mrgoonie/claudekit-skills
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
351
6197 web-to-markdown softaworks/agent-toolkit
web-to-markdown Convert web pages to clean Markdown by driving a locally installed browser (via web2md ). Hard trigger gate (must enforce) This skill MUST NOT be used unless the user explicitly wrote exactly a phrase like: use the skill web-to-markdown ... use a skill web-to-markdown ... If the user did not explicitly request this skill by name, stop and ask them to re-issue the request including: use the skill web-to-markdown . What this skill does Handles JS-rendered pages (Puppeteer → user Ch...
351
6198 fpf:propose-hypotheses neolabhq/context-engineering-kit
Propose Hypotheses Workflow Execute the First Principles Framework (FPF) cycle: generate competing hypotheses, verify logic, validate evidence, audit trust, and produce a decision. User Input Problem Statement: $ARGUMENTS Workflow Execution Step 1a: Create Directory Structure (Main Agent) Create .fpf/ directory structure if it does not exist: mkdir -p .fpf/ { evidence,decisions,sessions,knowledge/ { L0,L1,L2,invalid } } touch .fpf/ { evidence,decisions,sessions,knowledge/ { L0,L1,L2,invalid } } ...
351
6199 fpf:decay neolabhq/context-engineering-kit
Evidence Freshness Management Manages evidence freshness by identifying stale decisions and providing governance actions. Implements FPF B.3.4 (Evidence Decay). Key principle: Evidence is perishable. Decisions built on expired evidence carry hidden risk. Quick Concepts What is "stale" evidence? Every piece of evidence has a valid_until date. A benchmark from 6 months ago may no longer reflect current system performance. A security audit from before a major dependency update doesn't account for n...
351
6200 fpf:actualize neolabhq/context-engineering-kit
Actualize Knowledge Base This command is a core part of maintaining a living assurance case. It keeps your FPF knowledge base ( .fpf/ ) in sync with the evolving reality of your project's codebase. The command performs a three-part audit against recent git changes to surface potential context drift, stale evidence, and outdated decisions. This aligns with the Observe phase of the FPF Canonical Evolution Loop (B.4) and helps manage Epistemic Debt (B.3.4). Action (Run-Time) Step 1: Check Git Chang...
351