📄 claude/resources/prompt-library/neologism-creator

File: neologism-creator.md | Updated: 11/15/2025

Source: https://docs.claude.com/en/resources/prompt-library/neologism-creator

Agent Skills are now available! Learn more about extending Claude's capabilities with Agent Skills .

Claude Docs home pagelight logodark logo

US

English

Search...

Ctrl K

Search...

Navigation

Prompt Library

Neologism creator

Home Developer Guide API Reference Model Context Protocol (MCP) Resources Release Notes

On this page

Copy this prompt into our developer Console to try it for yourself!

| | Content | | --- | --- | | User | Can you help me create a new word for the act of pretending to understand something in order to avoid looking ignorant or uninformed? |

Example output

How about the neologism “fauxprehension” to describe this concept? Fauxprehension (fəʊprɪˈhɛnʃ(ə)n) - noun
Definition: The act of feigning understanding or comprehension of a topic, concept, or situation in order to avoid appearing ignorant, uninformed, or out of the loop. It is the pretense of knowledge or grasp of a subject matter, often employed in social or professional settings to maintain one’s image or status. Etymology: The word “fauxprehension” is a blend of “faux,” which comes from the French word meaning false or fake, and “comprehension,” which means the action or capability of understanding something.


API request

  • Python
  • TypeScript
  • AWS Bedrock Python
  • AWS Bedrock TypeScript
  • Vertex AI Python
  • Vertex AI TypeScript

Copy

import anthropic

client = anthropic.Anthropic(
  # defaults to os.environ.get("ANTHROPIC_API_KEY")
  api_key="my_api_key",
)
message = client.messages.create(
  model="claude-sonnet-4-5",
  max_tokens=1000,
  temperature=1,
  messages=[\
    {\
      "role": "user",\
      "content": [\
        {\
          "type": "text",\
          "text": "Can you help me create a new word for the act of pretending to understand something in order to avoid looking ignorant or uninformed?"\
        }\
      ]\
    }\
  ]
)
print(message.content)

Was this page helpful?

YesNo

Function fabricator CSV converter

Assistant

Responses are generated using AI and may contain mistakes.