Attributed String logo

Attributed String

Community
rshankras
attributed-string

AttributedString patterns for rich text formatting, alignment, selection, and SwiftUI integration. Use when working with styled text, text editing, or AttributedString APIs.

Overview

Publisherrshankras
Repositoryclaude-code-apple-skills
Skill nameattributed-string
Stars
744
Forks
70
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by rshankras on GitHub. Read the source before you install it.

Installation

Install the Attributed String AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/rshankras/claude-code-apple-skills.git /tmp/claude-code-apple-skills
mkdir -p .claude/skills
cp -r /tmp/claude-code-apple-skills/skills/foundation/attributed-string .claude/skills/attributed-string
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Attributed String in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Attributed String on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Attributed String is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

AttributedString Patterns

Correct API shapes and patterns for Foundation's AttributedString. Covers creating styled text, applying attributes to ranges, text alignment, writing direction, line height control, text selection and editing, discontiguous substrings, and SwiftUI integration.

When This Skill Activates

Use this skill when the user:

  • Asks about AttributedString creation or manipulation
  • Wants to style text with fonts, colors, underlines, or other attributes
  • Mentions text alignment, writing direction, or line height
  • Asks about text selection or text editing with AttributedString
  • Wants to work with DiscontiguousAttributedSubstring or RangeSet
  • Mentions TextEditor with AttributedString in SwiftUI
  • Asks about rich text formatting in Swift
  • Wants to replace or modify text within an AttributedString
  • Mentions paragraphStyle, textSelectionAffinity, or AttributedTextSelection

Decision Tree

What do you need with AttributedString?
|
+-- Create or style text
|   |
|   +-- Simple inline attributes (font, color)
|   |   --> Creating and Styling section
|   |
|   +-- Paragraph-level formatting (alignment, line height)
|       --> Text Alignment and Formatting section
|
+-- Control text layout
|   |
|   +-- Writing direction (LTR / RTL)
|   |   --> Writing Direction and Line Height section
|   |
|   +-- Line spacing / height
|       --> Writing Direction and Line Height section
|
+-- Edit or select text programmatically
|   |
|   +-- Replace selection with characters or AttributedString
|   |   --> Text Selection and Editing section
|   |
|   +-- Work with multiple non-contiguous ranges
|       --> DiscontiguousAttributedSubstring section
|
+-- Display in SwiftUI
    --> SwiftUI Integration section

API Availability

APIMinimum VersionNotes
AttributedStringiOS 15 / macOS 12Swift-native replacement for NSAttributedString
AttributedString.paragraphStyleiOS 15 / macOS 12Uses NSMutableParagraphStyle
AttributedString.writingDirectioniOS 26 / macOS 26New in 2025
AttributedString.LineHeightiOS 26 / macOS 26.exact(points:), .multiple(factor:), .loose
AttributedString.alignmentiOS 26 / macOS 26.left, .center, .right
AttributedTextSelectioniOS 26 / macOS 26Programmatic text selection
replaceSelection(_:withCharacters:)iOS 26 / macOS 26Replace selection with plain characters
replaceSelection(_:with:)iOS 26 / macOS 26Replace selection with AttributedString
DiscontiguousAttributedSubstringiOS 26 / macOS 26Non-contiguous range selections
AttributedString.utf8iOS 26 / macOS 26UTF-8 code unit view
TextEditor(text:selection:) with AttributedStringiOS 26 / macOS 26SwiftUI rich text editing
.textSelectionAffinity(_:)iOS 26 / macOS 26Control cursor affinity at line boundaries

Top 5 Mistakes

#MistakeFix
1Using NSAttributedString in new Swift codeUse AttributedString (iOS 15+) for type-safe, Swift-native attributes
2Applying range-based attributes without checking the range existsAlways safely unwrap the result of text.range(of:) before subscripting
3Forgetting that AttributedString is a value typeMutations require var, not let; assign attributes after declaring as var
4Building NSMutableParagraphStyle when new alignment API is availableUse text.alignment = .center on iOS 26+ instead of manual paragraph styles
5Modifying the original string instead of the selection when using replaceSelectionPass the selection as inout and let the API update the selection range for you

Creating and Styling

Basic Initialization

swift
// Plain text
let plain = AttributedString("Hello, world!")

// With attributes applied inline
var bold = AttributedString("Bold text")
bold.font = .boldSystemFont(ofSize: 16)

Applying Attributes to Ranges

swift
var text = AttributedString("Styled text")
text.foregroundColor = .red
text.backgroundColor = .yellow
text.font = .systemFont(ofSize: 14)

// Attribute on a specific range
if let range = text.range(of: "Styled") {
    text[range].underlineStyle = .single
    text[range].underlineColor = .blue
}

Creating from a Substring

swift
let source = AttributedString("Hello, world!")
if let range = source.range(of: "world") {
    let substring = source[range]
    let extracted = AttributedString(substring) // standalone copy
}
PatternVerdict
var text = AttributedString("...") then mutateCorrect
let text = AttributedString("...") then mutateWill not compile -- value type requires var
Force-unwrapping text.range(of:)!Fragile -- use if let or guard let

Text Alignment and Formatting

Legacy Approach (iOS 15+)

swift
var paragraph = AttributedString("Centered paragraph of text")
let style = NSMutableParagraphStyle()
style.alignment = .center
paragraph.paragraphStyle = style

Modern Approach (iOS 26+)

swift
var paragraph = AttributedString("Centered paragraph of text")
paragraph.alignment = .center

Available TextAlignment values:

ValueDescription
.leftLeft-aligned text
.rightRight-aligned text
.centerCenter-aligned text

Writing Direction and Line Height

Writing Direction (iOS 26+)

swift
var text = AttributedString("Hello عربي")
text.writingDirection = .rightToLeft
ValueDescription
.leftToRightStandard LTR layout
.rightToLeftRTL layout for Arabic, Hebrew, etc.

Line Height (iOS 26+)

swift
var multiline = AttributedString(
    "This is a paragraph\nwith multiple lines\nof text."
)

// Exact point value
multiline.lineHeight = .exact(points: 32)

// Multiplier of the default line height
multiline.lineHeight = .multiple(factor: 2.5)

// System-defined loose spacing
multiline.lineHeight = .loose
ModeUse Case
.exact(points:)Pixel-perfect designs with fixed line heights
.multiple(factor:)Proportional scaling relative to font size
.looseComfortable reading spacing chosen by the system

Text Selection and Editing

Replacing Selected Text (iOS 26+)

swift
var text = AttributedString("Here is my dog")
var selection = AttributedTextSelection(range: text.range(of: "dog")!)

// Replace with plain characters
text.replaceSelection(&selection, withCharacters: "cat")

// Replace with an AttributedString
let replacement = AttributedString("horse")
text.replaceSelection(&selection, with: replacement)

Key point: use withCharacters: for plain text, with: for styled replacements.

DiscontiguousAttributedSubstring

Select and manipulate multiple non-contiguous ranges at once (iOS 26+).

swift
let text = AttributedString("Select multiple parts of this text")

if let range1 = text.range(of: "Select"),
   let range2 = text.range(of: "text") {
    let rangeSet = RangeSet([range1, range2])
    var substring = text[rangeSet] // DiscontiguousAttributedSubstring
    substring.backgroundColor = .yellow

    // Flatten into a single contiguous AttributedString
    let combined = AttributedString(substring)
}

UTF-8 View

Access raw UTF-8 code units (iOS 26+):

swift
let text = AttributedString("Hello")
for codeUnit in text.utf8 {
    print(codeUnit)
}

SwiftUI Integration

TextEditor with AttributedString and Selection (iOS 26+)

swift
struct SuggestionTextEditor: View {
    @State var text: AttributedString = ""
    @State var selection = AttributedTextSelection()

    var body: some View {
        VStack {
            TextEditor(text: $text, selection: $selection)
            SuggestionsView(
                substrings: getSubstrings(
                    text: text,
                    indices: selection.indices(in: text)
                )
            )
        }
    }
}

Text Selection Affinity

Control which line the cursor appears on when positioned at a line boundary:

swift
TextEditor(text: $text, selection: $selection)
    .textSelectionAffinity(.upstream)

.upstream keeps the cursor at the end of the previous line; .downstream moves it to the start of the next.

Displaying Styled Text in SwiftUI

swift
// Simple display
Text(attributedString)

// With text selection enabled
Text(attributedString)
    .textSelection(.enabled)

Review Checklist

Correctness

  • Using AttributedString (not NSAttributedString) for new Swift code
  • All range lookups safely unwrapped with if let or guard let
  • String declared as var before applying attributes
  • replaceSelection passes selection as inout (&selection)

Platform and Versioning

  • New APIs (alignment, writingDirection, lineHeight, selection) gated to iOS 26+ / macOS 26+
  • Legacy paragraph style approach used for iOS 15-25 targets
  • Availability checks (if #available) wrap newer APIs when supporting older deployment targets

SwiftUI

  • TextEditor(text:selection:) overload used for rich text editing (iOS 26+)
  • .textSelectionAffinity applied where cursor behavior at line wraps matters
  • .textSelection(.enabled) added to Text views that display user content

Accessibility

  • Foreground and background color combinations meet contrast requirements
  • Styled text does not rely solely on color to convey meaning (add underline, bold, or icons)
  • Writing direction set correctly for RTL language content

References

Frequently asked questions

What does the Attributed String AI skill do?

AttributedString patterns for rich text formatting, alignment, selection, and SwiftUI integration. Use when working with styled text, text editing, or AttributedString APIs.

Why use Attributed String on TypingMind?

Because you install it once and use it with any model. Attributed String is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Attributed String in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/rshankras/claude-code-apple-skills/tree/main/skills/foundation/attributed-string. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Attributed String?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Attributed String?

As many as you like. As long as a model supports skills, you can use Attributed String with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Attributed String AI skill free?

Yes. It is published on GitHub by rshankras under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇