Explore

Find agent skills by outcome

132,537 skills indexed with the new KISS metadata standard.

Showing 24 of 132,537Categories: Data & Insights, Creative, General, Openclaw, Coding & Debugging
General
PromptBeginner5 minmarkdownQuality: 24

- Custom conditions: `stop(errorCondition(msg

class = myError)) then catch with tryCatch(...

0
General
PromptBeginner5 minmarkdownQuality: 28

- tryCatch unwinds the call stack — handler runs in the calling environment

not where the error occurred. Cannot resume execution.

0
Creative
PromptBeginner5 minmarkdownQuality: 28

- `tryCatch(expr

warning = function(w) {...}) catches the first warning and exits. Use withCallingHandlers + invokeRestart(muffleWarning)` to suppress warnings but continue.

0
General
PromptBeginner5 minmarkdownQuality: 24

- `tryCatch(expr

error = function(e) e)` returns the error condition object.

0
General
PromptBeginner5 minmarkdownQuality: 24

- `Position(f

x) returns the index of the first match (like Find` but returns position

0
General
PromptBeginner5 minmarkdownQuality: 28

- lengths(x) returns the length of each element of a list. Equivalent to `sapply(x

length)` but faster (implemented in C).

0
General
PromptBeginner5 minmarkdownQuality: 24

- `Find(f

x) returns the first element where f(elem) is TRUE. Find(f

0
General
PromptBeginner5 minmarkdownQuality: 24

- `Map(f

...) is a simple wrapper for mapply(f

0
Creative
PromptBeginner5 minmarkdownQuality: 24

- Reduce with init adds a starting value: `Reduce(f

x

0
General
PromptBeginner5 minmarkdownQuality: 24

- `Filter(f

x) keeps elements where f(elem) is TRUE. Unlike x[sapply(x

0
General
PromptBeginner5 minmarkdownQuality: 24

- `Reduce(f

x

0
General
PromptBeginner5 minmarkdownQuality: 24

- `Reduce(f

x

0
General
PromptBeginner5 minmarkdownQuality: 24

- `Reduce(f

x) applies binary function f cumulatively: Reduce(+

0
General
PromptBeginner5 minmarkdownQuality: 24

- `do.call(fun

args_list) — args` must be a list

0
General
PromptBeginner5 minmarkdownQuality: 24

Non-obvious behaviors

gotchas

0
General
PromptBeginner5 minmarkdownQuality: 24

- Use stop()

warning()

0
General
PromptBeginner5 minmarkdownQuality: 24

- `with(df

expr) avoids repeating df$` everywhere

0
General
PromptBeginner5 minmarkdownQuality: 28

- misc-utilities.md — Read when: do.call behaves differently than direct call

need Reduce/Filter/Map

0
General
PromptBeginner5 minmarkdownQuality: 28

- dates-and-system.md — Read when: Date/POSIXct conversion gives wrong day

time zones cause off-by-one

0
General
PromptBeginner5 minmarkdownQuality: 24

- modeling.md — Read when: formula syntax is confusing (I()

* vs :

0
General
PromptBeginner5 minmarkdownQuality: 24

For deeper coverage

read the reference files in references/:

0
General
PromptBeginner5 minmarkdownQuality: 24

Non-obvious behaviors

surprising defaults

0
General
PromptBeginner5 minmarkdownQuality: 24

labels = c(low

med

0
General
PromptBeginner5 minmarkdownQuality: 24

cbind(df1

df2) # bind columns (same rows)

0