Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
$pwd:
jeremylongshore
GitHub creator profile

jeremylongshore

Repository-level view of 2,216 collected skills across 12 GitHub repositories, including approximate occupation coverage.

skills collected
2,216
repositories
12
occupation fields
2
updated
2026-05-31
repository map

Where the skills live

Top repositories by collected skill count, with their share of this creator catalog and occupation spread.

#01
claude-code-plugins-plus-skills
2,117 skills · 2026-05-31
Développeurs de logicielsAdministrateurs de réseaux et de systèmes informatiquesAnalystes en sécurité de l'informationAnalystes en assurance qualité des logiciels et testeursScientifiques des donnéesSpécialistes en gestion de projets
51 occupation categories · 100% classified
96%share
#02
plugins-nixtla
66 skills · 2026-05-04
Scientifiques des donnéesDéveloppeurs de logicielsAnalystes en assurance qualité des logiciels et testeursAnalystes financiers et en placementsEnseignants en informatique, postsecondaireAnalystes en études de marché et spécialistes en marketing
9 occupation categories · 100% classified
3.0%share
#03
oss-agent-lab
11 skills · 2026-03-17
Développeurs de logicielsScientifiques des données
2 occupation categories · 100% classified
0.5%share
#04
j-rig-skill-binary-eval
6 skills · 2026-03-29
Développeurs de logicielsAnalystes en assurance qualité des logiciels et testeurs
2 occupation categories · 100% classified
0.3%share
#05
excel-analyst-pro-skill-md
4 skills · 2026-03-18
Analystes financiers et en placementsAnalystes budgétairesAnalystes en gestion
3 occupation categories · 100% classified
0.2%share
#06
claude-code-slack-channel
4 skills · 2026-05-31
classification pending
0.2%share
#07
startaitools.com
3 skills · 2026-05-28
Analystes en études de marché et spécialistes en marketing
1 occupation categories · 67% classified
0.1%share
#08
qmd-team-intent-kb
1 skills · 2026-03-20
Préposés aux dossiers
1 occupation categories · 100% classified
0.0%share
Showing the top 8 repositories here; full repository list continues below.
repository explorer

Repositories and representative skills

#001
claude-code-plugins-plus-skills
2,117 skills2.3k315updated 2026-05-31
96% of creator
detecting-command-injection-patterns
Analystes en sécurité de l'information

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
Analystes en sécurité de l'information

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
Analystes en sécurité de l'information

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
Analystes en sécurité de l'information

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
Analystes en sécurité de l'information

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
Analystes en sécurité de l'information

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
Analystes en sécurité de l'information

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
Analystes en sécurité de l'information

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
Showing top 8 of 2,117 collected skills in this repository.
#002
plugins-nixtla
66 skills61updated 2026-05-04
3.0% of creator
nixtla-skills-bootstrap
Développeurs de logiciels

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
Scientifiques des données

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
Enseignants en informatique, postsecondaire

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
Développeurs de logiciels

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
Scientifiques des données

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
Développeurs de logiciels

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
Analystes financiers et en placementsAnalystes en études de marché et spécialistes en marketing

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
Scientifiques des données

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
Showing top 8 of 66 collected skills in this repository.
#003
oss-agent-lab
11 skills10updated 2026-03-17
0.5% of creator
Showing top 8 of 11 collected skills in this repository.
#004
j-rig-skill-binary-eval
6 skills00updated 2026-03-29
0.3% of creator
#005
excel-analyst-pro-skill-md
4 skills323updated 2026-03-18
0.2% of creator
excel-dcf-modeler
Analystes financiers et en placements

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
Analystes financiers et en placements

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
Analystes en gestion

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
Analystes budgétaires

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 skills2821updated 2026-05-31
0.2% of creator
#007
startaitools.com
3 skills91updated 2026-05-28
0.1% of creator
#009
intentional-cognition-os
1 skills41updated 2026-05-27
0.0% of creator
#010
contributing-clanker
1 skills10updated 2026-05-29
0.0% of creator
#012
resume-firebase
1 skills00updated 2025-12-22
0.0% of creator
12 sur 12 depots affiches
Tous les depots sont affiches