Skip to main content
在 Manus 中运行任何 Skill
一键导入
$pwd:
jeremylongshore
GitHub 创作者资料

jeremylongshore

按仓库查看 12 个 GitHub 仓库中的 2,216 个已收集 skills,并展示近似职业覆盖。

已收集 skills
2,216
仓库
12
职业领域
2
更新
2026-05-31
职业覆盖
该创作者主要覆盖的职业大类。
这里展示前 8 个仓库;完整仓库列表在下方继续。
仓库浏览

仓库与代表性 skills

#001
claude-code-plugins-plus-skills
2,117 个 skills2.3k315更新于 2026-05-31
占该创作者 96%
detecting-command-injection-patterns
信息安全分析师

Scan a source tree for command-injection vulnerable patterns: shell=True calls in Python subprocess, os.system / os.popen with interpolated strings, Node child_process.exec with template literals, Ruby backticks / Kernel#system / Kernel#exec with interpolation, Go exec.Command with shell wrapping, PHP system / passthru / shell_exec / backticks with $-interpolation, Java Runtime.exec with concatenated args. Use when: pre-commit gate on code that calls out to shell utilities, audit of file-processing / archive-handling / image-conversion code, post-bug-report investigation for "we shell out to a tool." Threshold: any shell-invocation API called with a string that contains a variable interpolation, OR shell=True with anything other than a fixed literal. Trigger with: "scan command injection", "shell=True audit", "find exec calls", "check os.system".

2026-05-31
detecting-eval-exec-usage
信息安全分析师

Scan a source tree for dynamic-code-execution APIs that an attacker can hijack: Python eval / exec / compile, JavaScript eval / Function() / setTimeout(string), Ruby eval / instance_eval / class_eval, Java ScriptEngine, PHP eval / assert($str), .NET Activator.CreateInstance / Reflection.Emit with dynamic input. Use when: pre-commit gate on any application that parses user-uploaded code (rule engines, formula evaluators, plugin systems), or post-bug-report when "we run user-supplied expressions." Threshold: any call to eval / exec / Function / similar where the argument is not a string literal. Trigger with: "scan eval", "find dynamic exec", "audit eval calls", "code injection patterns".

2026-05-31
detecting-insecure-deserialization
信息安全分析师

Scan a source tree for unsafe-by-default deserialization APIs: Python pickle.loads / cPickle / shelve / dill, Ruby Marshal.load / YAML.load (pre-3.1 default), Java ObjectInputStream.readObject, PHP unserialize, .NET BinaryFormatter / NetDataContractSerializer, Node.js node-serialize, JavaScript JSON.parse with reviver containing eval. Use when: pre-commit gate on services that accept binary blobs, audit of legacy job-queue code (workers deserializing tasks), post-bug-report when "we accept user-uploaded archives." Threshold: any call to a known-unsafe deserialization API on data that originates from user input, network, file upload, or untrusted storage. Trigger with: "scan deserialization", "pickle audit", "java readObject scan", "yaml.load check".

2026-05-31
detecting-sql-injection-patterns
信息安全分析师

Scan a source tree for SQL-injection vulnerable patterns: string concatenation into queries, f-string interpolation in SQL, string-format substitution into raw queries, deprecated cursor methods (cursor.execute with % formatting), Knex / Sequelize raw() with template interpolation, sequelize.query with replacements. Use when: pre-commit code review, post-feature SQL-touching release, inheriting a legacy codebase that predates ORMs, or post-bug-report investigation. Threshold: any source line where SQL keywords (SELECT / INSERT / UPDATE / DELETE / FROM / WHERE) appear in a string that's being built via concatenation, f-string, %-format, or .format() with variable input. Trigger with: "scan for sqli", "sql injection patterns", "check raw queries", "audit cursor.execute".

2026-05-31
detecting-weak-cryptography
信息安全分析师

Scan a source tree for weak cryptographic primitives: MD5 / SHA-1 used for security purposes, DES / 3DES / RC4 ciphers, ECB block mode, custom-built crypto (XOR loops, hand-rolled HMAC), hardcoded IVs, predictable random (Math.random / java.util.Random for crypto seeds), missing certificate verification (verify=False, rejectUnauthorized: false). Use when: pre-merge gate on crypto-touching code, audit before SOC2 / PCI assessment, post-incident review when "we found a weakness in our token signing." Threshold: any call to a known-weak algorithm with non-test context, OR cert verification explicitly disabled, OR a custom crypto loop pattern. Trigger with: "scan weak crypto", "find MD5 usage", "check ECB mode", "audit ssl verify", "weak random".

2026-05-31
scanning-for-hardcoded-secrets
信息安全分析师

Scan a source-code tree for hardcoded credentials embedded in source files: AWS access keys, GitHub tokens, Stripe keys, Slack tokens, Anthropic API keys, OpenAI keys, JWT signing secrets, generic base64-encoded passwords, RSA / SSH private keys, and high-entropy string literals that pattern-match common credential shapes. Use when: pre-commit gate before pushing a feature branch, audit before SOC2, post-incident scan after a leak, or inheriting a codebase you didn't write. Threshold: any source file contains a string that matches a canonical credential regex (AWS AKIA prefix, GitHub ghp_ prefix, etc.) OR a string with Shannon entropy above 4.5 in a field context (key=, token:, secret=). Trigger with: "scan secrets", "credential scan", "find hardcoded keys", "leak check".

2026-05-31
detecting-directory-listing
信息安全分析师

Probe a target for directories that return auto-generated index listings instead of denying or serving a specific file — exposes the full file tree under any reachable directory, including files the application never linked to. Use when: post-deploy verification on a static-asset host, security audit before SOC2, or following up on a finding from skill #6 (exposed-files) where a backup-file path returned 200 with HTML body instead of the expected file content (suggests autoindex serving a directory listing). Threshold: any directory-shaped path returns 200 with HTML body matching the framework-specific autoindex fingerprint (nginx fancyindex, Apache mod_autoindex Index of/, Caddy browse, Lighttpd mod_dirlisting, etc.). Trigger with: "directory listing check", "autoindex detection", "open directory scan".

2026-05-31
fingerprinting-server-software
信息安全分析师

Identify the server software, framework, and component versions a target is running from its HTTP response signatures — Server header, X-Powered-By, Via, X-AspNet-Version, X-Runtime, X-Drupal-Cache, X-Generator, Set-Cookie name patterns, error-page artwork, HTTP method behavior signatures. Use when: penetration test reconnaissance phase, post-deploy audit of fingerprintable exposure, or before reporting "no obvious version disclosure" to an auditor. Threshold: any version string in a response header (e.g., Server header with nginx/1.18.0, X-Powered-By with PHP/7.4.21, X-Generator with Drupal 9), or any framework-default Set-Cookie name (PHPSESSID, JSESSIONID, connect.sid, _csrf_token). Trigger with: "fingerprint server", "version disclosure", "tech-stack identification", "what's this site running".

2026-05-31
当前展示该仓库 Top 8 / 2,117 个已收集 skills。
#002
plugins-nixtla
66 个 skills61更新于 2026-05-04
占该创作者 3.0%
nixtla-skills-bootstrap
软件开发工程师

Generate and configure Nixtla Skills using the CLI for forecasting workflows. Use when installing or updating skills. Trigger with 'install nixtla skills' or 'update nixtla'.

2026-05-04
nixtla-model-benchmarker
数据科学家

Generate benchmarking pipelines to compare forecasting models and summarize accuracy/speed trade-offs. Use when evaluating TimeGPT vs StatsForecast/MLForecast/NeuralForecast on a dataset. Trigger with "benchmark models", "compare TimeGPT vs StatsForecast", or "model selection".

2026-05-04
nixtla-research-assistant
高校计算机科学教师

Research and summarize Nixtla ecosystem updates and time-series forecasting content from the web and GitHub. Use when gathering release notes, recent changes, or best-practice references. Trigger with "Nixtla updates", "what's new with TimeGPT", or "find time-series papers".

2026-05-04
timegpt-pipeline-builder
软件开发工程师

Generate production-ready TimeGPT forecasting pipeline code from requirements. Use when scaffolding a pipeline with validation, logging, visualization, and repeatable runs. Trigger with "create TimeGPT pipeline", "build TimeGPT integration", or "generate forecast code".

2026-05-04
nixtla-baseline-review
数据科学家

Analyze Nixtla baseline forecasting results (sMAPE/MASE on M4 or other benchmark datasets). Use when the user asks about baseline performance, model comparisons, or metric interpretation for Nixtla time-series experiments. Trigger with "baseline review", "interpret sMAPE/MASE", or "compare AutoETS vs AutoTheta".

2026-05-04
changelog-orchestrator
软件开发工程师

Orchestrate 6-phase changelog generation workflow with AI synthesis, multi-source data fetching (GitHub/Slack/Git), quality validation, and automated PR creation. Use when automating release notes, weekly changelogs, or documentation updates. Trigger with "generate changelog", "weekly changelog", or "automate release notes".

2026-05-03
nixtla-explain-analyst
财务和投资分析师市场调研分析师与营销专员

Analyze and explain TimeGPT forecast results in plain English. Generates executive summaries with driver analysis. Use when stakeholders need forecast explanations, board presentations, or compliance documentation. Trigger with "explain forecast", "why is the forecast", "forecast narrative".

2026-05-03
nixtla-timegpt-finetune-lab
数据科学家

Fine-tunes TimeGPT on custom datasets to improve forecasting accuracy. Use when TimeGPT's zero-shot performance is insufficient or domain-specific accuracy is needed. Trigger with "finetune TimeGPT", "train TimeGPT", "adapt TimeGPT".

2026-05-02
当前展示该仓库 Top 8 / 66 个已收集 skills。
#003
oss-agent-lab
11 个 skills10更新于 2026-03-17
占该创作者 0.5%
当前展示该仓库 Top 8 / 11 个已收集 skills。
#004
j-rig-skill-binary-eval
6 个 skills00更新于 2026-03-29
占该创作者 0.3%
#005
excel-analyst-pro-skill-md
4 个 skills323更新于 2026-03-18
占该创作者 0.2%
excel-dcf-modeler
财务和投资分析师

Builds discounted cash flow (DCF) valuation models in Excel with free cash flow projections, WACC calculations, and sensitivity analysis. Targets investment banking and corporate finance workflows. Use when asked to create a DCF model, calculate enterprise value, value a company, or build a valuation model. Trigger with "create a DCF model", "build a valuation", "calculate enterprise value", or "value this company". Make sure to use whenever the user needs company valuation or DCF analysis in Excel.

2026-03-18
excel-lbo-modeler
财务和投资分析师

Creates leveraged buyout (LBO) models in Excel with sources & uses, debt schedules, cash flow waterfalls, and IRR calculations. Targets private equity and investment banking workflows. Use when asked to create an LBO model, build a buyout model, calculate PE returns, or analyze a leveraged acquisition. Trigger with "create an LBO model", "build a buyout model", "PE returns analysis", or "leveraged acquisition model". Make sure to use whenever the user needs private equity deal modeling in Excel.

2026-03-18
excel-pivot-wizard
管理分析师

Generates pivot tables and charts from raw data using natural language commands. Targets business analysts and data teams working in Excel. Use when asked to create a pivot table, summarize data by category, analyze sales by region, show revenue breakdowns, or build cross-tab analyses. Trigger with "create a pivot table", "summarize by category", "sales by region", or "show breakdown by". Make sure to use whenever the user needs data summarization or pivot analysis in Excel.

2026-03-18
excel-variance-analyzer
预算分析师

Automates budget vs actual variance analysis in Excel with flagging, commentary, and executive summaries. Targets FP&A teams and financial reporting workflows. Use when asked to analyze budget variance, compare actual vs forecast, create a variance report, or explain budget differences. Trigger with "analyze budget variance", "compare actual vs forecast", "variance report", or "why are we over budget". Make sure to use whenever the user needs budget-to-actual analysis or financial variance reporting.

2026-03-18
#006
claude-code-slack-channel
4 个 skills2821更新于 2026-05-31
占该创作者 0.2%
#007
startaitools.com
3 个 skills91更新于 2026-05-28
占该创作者 0.1%
#009
intentional-cognition-os
1 个 skills41更新于 2026-05-27
占该创作者 0.0%
#010
contributing-clanker
1 个 skills10更新于 2026-05-29
占该创作者 0.0%
#012
resume-firebase
1 个 skills00更新于 2025-12-22
占该创作者 0.0%
已展示 12 / 12 个仓库
已展示全部仓库