coding-prefs
$
npx mdskill add langchain-ai/deepagents/coding-prefsStore coding style rules to guide future agent behavior.
- Aligns agent output with user's preferred code style and conventions.
- Reads and writes to /memory/coding-prefs.md file.
- Captures explicit user feedback as durable preference entries.
- Updates existing rules when conflicting preferences appear.
SKILL.md
.github/skills/coding-prefsView on GitHub ↗
--- name: coding-prefs description: Read the user's coding preferences from /memory/coding-prefs.md before making non-trivial style decisions, and append new preferences when the user gives durable feedback. --- # Coding Preferences Skill Use this skill to keep ``/memory/coding-prefs.md`` in sync with how this specific user wants you to work. This file is **user-scoped**, so each user has their own copy — anything you write here only affects future conversations with the same user. ## When to Read - Before picking a code style, test framework, or commit message format - Before deciding whether to add comments, type hints, or docstrings - Before refactoring beyond what was asked ## When to Write Append a new entry whenever the user gives feedback that should apply to future work: - "Don't add docstrings unless I ask" → save it - "I prefer pytest over unittest" → save it - "Stop summarizing what you did at the end" → save it Each entry should be one line: the rule, then a brief reason if the user gave one. ## How to Write Read the file first (it may not exist yet), then append. Don't overwrite — preferences accumulate over time. If a new preference contradicts an existing one, replace the old line and note the change.
More from langchain-ai/deepagents
- analyze-market>-
- arxiv-searchSearches arXiv for preprints and academic papers, retrieves abstracts, and filters by topic. Use when the user asks to find research papers, search arXiv, look up preprints, find academic articles in physics, math, CS, biology, statistics, or related fields.
- blog-postWrites and structures long-form blog posts, creates tutorial outlines, and optimizes content for SEO with cover image generation. Use when the user asks to write a blog post, article, how-to guide, tutorial, technical writeup, thought leadership piece, or long-form content.
- code-reviewPerform a structured code review of changes, checking for correctness, style, tests, and potential issues.
- competitor-analysis>-
- cudf-analyticsUse for GPU-accelerated data analysis on datasets, CSVs, or tabular data using NVIDIA cuDF. Triggers when tasks involve groupby aggregations, statistical summaries, anomaly detection, or large-scale data profiling.
- cuml-machine-learningUse for GPU-accelerated machine learning on tabular data using NVIDIA cuML. Triggers when tasks involve classification, regression, clustering, dimensionality reduction, or model training on datasets.
- data-visualizationUse for creating publication-quality charts and multi-panel analysis summaries. Triggers when tasks involve visualizing data, plotting results, creating charts, or producing visual reports from analysis output.
- gpu-document-processingUse when processing large PDFs, document collections, or bulk text extraction tasks that benefit from GPU-accelerated processing. Triggers when the user provides large documents or needs bulk document analysis.
- langgraph-docsFetches and references LangGraph Python documentation to build stateful agents, create multi-agent workflows, and implement human-in-the-loop patterns. Use when the user asks about LangGraph, graph agents, state machines, agent orchestration, LangGraph API, or needs LangGraph implementation guidance.