Skill Neologisms: Extending Capabilities
- Skill neologisms are novel, trainable tokens embedded in LLM vocabularies that activate specific capabilities without altering frozen base weights.
- They appear as either integrated soft tokens or as externally versioned artifacts, balancing rapid activation with auditability and transfer.
- Their design supports continual learning and zero-shot compositionality, offering efficient, modular updates for targeted skill enhancement.
Skill neologisms are newly introduced skill-bearing units that extend, label, or stabilize capabilities. In the most explicit formulation, they are soft tokens integrated in a model’s vocabulary and optimized so that providing them in context enhances performance on a specific skill without updating base-model weights (Berthon et al., 6 May 2026). Closely related mechanisms appear in trainable neologism tokens used as promptable behavioral handles such as ~short and ~kidmode (Park et al., 21 Dec 2025), in multi-concept controllability and self-verbalization through new input-only tokens (Hewitt et al., 9 Oct 2025), and in externalized, named skill artifacts derived from interaction traces, as in AutoSkill’s versioned skill cards (Yang et al., 1 Mar 2026). Taken together, these lines of work suggest that skill neologisms form a broader research program at the intersection of continual learning, controllability, personalization, prompt engineering, and the linguistic study of how new lexical items emerge and diffuse (Paradowski et al., 2011, Ryskina et al., 2020).
1. Core definition and conceptual scope
A pretrained LLM with parameters and a target skill admits a skill neologism as a set of learnable soft tokens that minimize loss over an -centered dataset , with an insertion function placing the tokens into text (Berthon et al., 6 May 2026):
This definition fixes three properties. First, the base model weights remain frozen. Second, the new capability is localized in vocabulary-level parameters rather than distributed across updated internal weights. Third, the learned object is tied to a skill rather than to a single task instance. The same paper frames skill-based continual learning through three desired properties: P1 learning new skills without modifying existing model parameters, P2 compositional transfer to out-of-distribution skill mixtures, and P3 zero-shot composition of independently trained skills (Berthon et al., 6 May 2026).
Related work defines a neologism more narrowly as a new token added to a model’s vocabulary, with all parameters frozen except the embedding of that token, trained on data exemplifying its meaning (Park et al., 21 Dec 2025). In that setting, the token functions as a discrete steering handle: prompts such as “Give me a ~short answer” or “Give me a ~kidmode answer” selectively activate the learned behavior while leaving the model’s default behavior available when the token is absent (Park et al., 21 Dec 2025). A further extension treats multiple added tokens as controllable concept handles for text length, flattery, refusal, incorrect answers, and more complex AxBench concepts, while constraining generation to the original vocabulary so that the neologisms act as input-only controls (Hewitt et al., 9 Oct 2025).
A broader, external-memory interpretation appears in AutoSkill. The paper does not use the term “neologism,” but it explicitly “can be read as a concrete mechanism for skill neologisms”: the system coins skills from experience, stabilizes them in a shared representation, refines them over time, and reuses them as named capabilities (Yang et al., 1 Mar 2026). In this reading, a skill neologism is not only a learned embedding but also a persistent lexical entry in an agent’s capability vocabulary.
2. Representational forms
Skill neologisms currently appear in two main representational forms. The first is the vocabulary-integrated soft token. If the original embedding matrix is , then a new skill neologism of length extends it to 0, with corresponding new vocabulary items 1 (Berthon et al., 6 May 2026). In the single-token variant, a new token 2 adds one trainable column 3; for Mistral-7B Instruct, this means training only 4 parameters for one neologism (Park et al., 21 Dec 2025). This representation is continuous, parameter-efficient, and directly promptable.
The second form is the explicit skill artifact. AutoSkill defines a skill as the tuple
5
where 6 is the skill name, 7 the description, 8 the prompt body, 9 the trigger set, 0 the tag set, 1 the example set, and 2 the version (Yang et al., 1 Mar 2026). The tuple is materialized as a SKILL.md artifact, optionally with extra files. The paper’s skill cards use fields such as ID, Version, Description, Tags, Triggers, and a structured Prompt block containing Role & Objective, Communication & Style Preferences, Operational Rules / Constraints, optional workflow sections, Anti-Patterns, and sometimes Output Format (Yang et al., 1 Mar 2026). In that representation, the neologism is both a named concept in a capability vocabulary and a machine-usable policy.
These two forms are not equivalent. Vocabulary-integrated tokens encode skills as learned directions in embedding space; skill artifacts encode them as inspectable, editable, versioned text-plus-metadata objects. A plausible implication is that the former favors compact, low-latency activation, whereas the latter favors auditability, transfer, and human intervention. Current work explores both rather than collapsing them into a single formalism.
3. Acquisition, naming, and self-evolution
The learning dynamics differ sharply across representations. In soft-token approaches, acquisition is optimization over the new embedding alone. One line uses preference-style datasets
3
where 4 appends an instruction containing the neologism token, 5 is a chosen response exemplifying the target behavior, and 6 is a rejected response exhibiting an opposed behavior (Park et al., 21 Dec 2025). Training minimizes an Anchored Preference Optimization objective while keeping all base parameters frozen. Under a matched setup, a single neologism trains 4,096 parameters, whereas the LoRA baseline trains 3,407,872 parameters; the neologism runs also complete over 50% faster than the respective LoRA runs (Park et al., 21 Dec 2025). A parallel framework likewise freezes transformer weights and existing token embeddings, adds one or more new tokens, and optimizes only the new embeddings with APO-up, showing that new words can control concepts such as flattery, incorrect answers, text length, and multiple jointly learned concepts (Hewitt et al., 9 Oct 2025).
AutoSkill acquires skills by extraction rather than by gradient updates to a token embedding. For a user 7, dialogue history is represented as 8, with 9, but skill extraction uses only user queries 0 as primary evidence so that skills reflect stable user requirements rather than assistant hallucinations (Yang et al., 1 Mar 2026). The extraction prompt instructs the model to identify durable, reusable constraints, policies, workflows, or templates; to avoid one-shot requests, stale constraints, and assistant-invented details; and to produce structured outputs containing name, description, prompt, triggers, tags, examples, and confidence (Yang et al., 1 Mar 2026). This is the point at which new skill names are coined.
A candidate skill is then compared with the existing skill bank using a hybrid dense-plus-BM25 similarity, followed by a judge model that decides among add, merge, and discard (Yang et al., 1 Mar 2026). The skill-bank update rule is explicit: 1
Merge performs semantic union rather than raw concatenation, preserves the capability identity, removes case-specific entities, deduplicates sections, and bumps the version 2 (Yang et al., 1 Mar 2026). The frequently refined professional_text_rewrite skill reaches version 0.1.34, whereas other skills remain at 0.1.0, which the paper interprets as qualitative evidence of continual refinement rather than duplication (Yang et al., 1 Mar 2026).
This acquisition pipeline makes the naming aspect literal. Skills such as professional_text_rewrite, selenium_automation_workflow_generator, 顶级心理咨询师, or 猫娘角色扮演对话 become stable lexical entries in a growing skill bank (Yang et al., 1 Mar 2026). In external-memory systems, then, skill neologisms are not latent only in parameters; they are overtly named artifacts with version histories.
4. Composition, controllability, and evaluation
The central empirical claim of the skill-neologism literature is that skills can be learned in modular form and then composed. In the direct soft-token setting, skill-centered datasets are built so that each example requires the target skill together with varying numbers of already mastered skills, which pushes the learned representation toward compositional rather than purely task-specific behavior (Berthon et al., 6 May 2026). On synthetic digit-sequence transformations, skill neologisms for [SHIFT] and [INV-POL] achieve near-perfect in-distribution performance and maintain high accuracy on out-of-distribution compositions with held-out skills, whereas LoRA degrades markedly on those out-of-distribution mixtures and prompt tuning falls in between (Berthon et al., 6 May 2026). The same paper shows that independently trained skill neologisms can be composed zero-shot, outperforming an in-context learning baseline even when the latter receives up to 100 examples per skill (Berthon et al., 6 May 2026).
Capacity is not monotone. When neologism length 3 is varied from 1 to 200, in-distribution accuracy saturates quickly, but out-of-distribution accuracy rises only up to a point and then declines, peaking around 4 in the reported ablation (Berthon et al., 6 May 2026). Training on more complex compositions also improves compositional transfer: higher 5 in the training mixtures yields better out-of-distribution generalization, especially for [INV-POL] (Berthon et al., 6 May 2026). These results motivate the view that limited token capacity acts as an inductive bias toward abstract skill representation rather than memorization.
The broader controllability literature reaches compatible conclusions. One study shows that new tokens can encode concepts such as long-text, short-text, single-sentence, use-like, flattery-answer, refusal-answer, and wrong-answer, with neologism control closing 92% of the training gap on average across these concepts (Hewitt et al., 9 Oct 2025). The same work demonstrates joint learning of multiple concepts in multiple words and shows that, for the difficult “likely” concept, a neologism reaches a goal score of 0.667 versus 0.281 for few-shot prompting; for the three-way combination short+numerical+likely, the neologism reaches 0.482 versus 0.387 for few-shot prompting (Hewitt et al., 9 Oct 2025). Another matched comparison against LoRA finds that ~short reaches 95.5% gap closure and ~kidmode 69.2%, outperforming the corresponding fine-tuned models under the reported setup (Park et al., 21 Dec 2025).
Evaluation of composition predates the term itself. Skill-Mix samples random subsets of 6 skills from a list of 7 skills, combines them with a topic, and grades whether a model can produce coherent text instantiating the entire subset (Yu et al., 2023). Because the number of subsets grows as 8, the evaluation aims to probe combinations that the model probably did not encounter in training. GPT-4’s reasonable performance at 9 is described as suggestive of going beyond “stochastic parrot” behavior, and the resulting framework supplies a natural benchmark backdrop for later skill-neologism work, which treats zero-shot skill composition as a core requirement (Yu et al., 2023).
5. Linguistic emergence, diffusion, and operationalization
Skill neologisms also belong to the ordinary linguistic history of neologisms. Research on Blip.pl models tags as locally invented lexemes that spread through a directed social network, with popularity following a power-law distribution and the distribution of adoption thresholds being strongly right-skewed with median 0 (Paradowski et al., 2011). Most users adopt tags when only about 11% of their neighbors, or fewer, have already used them, whereas more popular tags tend to be adopted at higher exposure. The paper explicitly links such processes to self-organization, social contagion, and the emergence of institutionalized vocabulary from local invention and imitation (Paradowski et al., 2011). For skill terminology, this implies that new skill labels can stabilize socially in much the same way as other technical jargon.
Distributional-semantic work reaches a complementary conclusion: neologisms tend to emerge in semantic neighborhoods that are somewhat sparse and, more strongly, in neighborhoods whose existing words have high frequency growth over time (Ryskina et al., 2020). In diachronic English corpora, both semantic sparsity and the average growth rate of semantic neighbors are predictive of word emergence, though the study finds more support for the growth-rate hypothesis (Ryskina et al., 2020). This suggests that skill neologisms are especially likely to arise where discourse around related technologies, roles, or practices is already expanding.
Operationalizing such emergence at scale remains difficult. A Chinese web pipeline over the BAAI CCI 3.0 corpus of 267,655,159 documents uses tokenizer-independent character 1-grams, dictionary anchoring, a well-formedness skill, and a three-way semantic classification skill to produce 226,959 classified candidates including 4,853 labeled neologisms (Wu et al., 7 Jun 2026). Its recall decomposition identifies Stage 1 candidate coverage 2 and Stage 4B semantic classification 3 as the main bottlenecks; Stage 3 well-formedness is near-lossless at 4, and its length-stratified results show structural judgment to be length-invariant at 5 while semantic novelty classification drops from 65.6% to 59.0% to 44.1% across 2-, 3-, and 4-character candidates (Wu et al., 7 Jun 2026). A separate English Reddit pipeline reduces 124.6 million unique token types to 1,021 candidates by combining rule-based filtering with multi-LLM classification; manual verification confirms that 599 of the 1,021 are genuine lexical innovations (Rossini et al., 7 May 2026).
These detection results matter directly for skill neologisms because newer capability labels can be missed, mistranslated, or misclassified even when their morphology is transparent. NEO-BENCH shows that model performance is nearly halved in machine translation when a single neologism is introduced into an otherwise near-identical sentence, and models with later knowledge cutoffs yield lower perplexities and perform better on downstream tasks involving recent neologisms (Zheng et al., 2024). A plausible implication is that skill vocabularies will drift faster than static LLM training cycles can fully absorb, making ongoing detection and adaptation necessary rather than optional.
6. Limits, failure modes, and open directions
Current methods remain bounded by the base model’s latent competence. Skill-neologism work explicitly assumes that the new skill is “not too far” from the pretraining distribution and that the model already contains circuitry that can be steered or activated by the new embedding (Berthon et al., 6 May 2026). The same paper notes potential saturation and interference when many neologisms share the same embedding space, and its length ablation shows that larger neologisms can overfit training compositions and hurt out-of-distribution generalization (Berthon et al., 6 May 2026). Parameter efficiency therefore does not eliminate representational limits.
Composition is not uniformly robust. In one study, ~short and ~kidmode work well individually, but the combined ~short + ~kidmode prompt drops the kid-friendliness score to 4.1/10, only 23.4% of the training gap closed, and the dual-neologism run scores worst on capability preservation among the reported variants (Park et al., 21 Dec 2025). Another study finds that multi-concept control can work, but also introduces norm regularization and multi-template training to improve robustness under composition and negation (Hewitt et al., 9 Oct 2025). These results indicate that modularity is empirical rather than guaranteed.
Interpretability introduces its own complications. Self-verbalization experiments show that models can often explain what a learned token means, but they can also generate machine-only synonyms. One paper reports “lack” functioning as a behaviorally effective synonym for a single-sentence concept, and another documents invented descriptors such as “Mutexpoitary” and “Poornessily” when the model attempts to explain a neologism (Hewitt et al., 9 Oct 2025, Park et al., 21 Dec 2025). The same line of work notes that a benign-looking natural word could function as an effective handle for an undesirable skill, which raises auditing and governance problems for learned capability tokens (Hewitt et al., 9 Oct 2025).
Externalized skill banks have different limits. AutoSkill mitigates conflicts through per-skill anti-patterns and a meta-instruction that retrieved skills may be irrelevant and should be ignored unless they directly match the current intent; it does not implement explicit conflict logic, explicit numerical skill-quality metrics, or pruning policies for rarely used skills (Yang et al., 1 Mar 2026). This leaves prioritization and conflict resolution largely to the LLM at inference time.
Human-facing skill-neologism support is also incomplete. In a cross-cultural communication study, AI Explanation yields the largest gains over no support in NS-rated communicative competence when non-native speakers learn and use English neologisms, but contextual appropriateness judgments show indifference across support conditions, self-reported perceptions overestimate NS ratings, and a significant gap remains between NNS- and NS-produced writing (Ki et al., 26 Apr 2026). The result suggests that even when AI improves production, it does not automatically confer reliable meta-pragmatic judgment.
Taken together, the literature treats skill neologisms less as a single method than as a family of mechanisms for creating, stabilizing, composing, and auditing new capability labels. Some methods learn them as embedding-space handles; others externalize them as versioned skill artifacts; still others study their spread and detect them as ordinary lexical innovations in social corpora. Across these settings, the same research agenda recurs: how to add new skills without weight updates, preserve old capabilities, expose the new capability in a reusable lexical form, and keep the resulting vocabulary interpretable and socially grounded (Berthon et al., 6 May 2026, Yang et al., 1 Mar 2026).