Files
Jason Woltje f5792c40be feat: Complete fleet — 94 skills across 10+ domains
Pulled ALL skills from 15 source repositories:
- anthropics/skills: 16 (docs, design, MCP, testing)
- obra/superpowers: 14 (TDD, debugging, agents, planning)
- coreyhaines31/marketingskills: 25 (marketing, CRO, SEO, growth)
- better-auth/skills: 5 (auth patterns)
- vercel-labs/agent-skills: 5 (React, design, Vercel)
- antfu/skills: 16 (Vue, Vite, Vitest, pnpm, Turborepo)
- Plus 13 individual skills from various repos

Mosaic Stack is not limited to coding — the Orchestrator and
subagents serve coding, business, design, marketing, writing,
logistics, analysis, and more.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 16:27:42 -06:00

62 lines
1.2 KiB
Markdown

---
category: Reactivity
---
# reactifyObject
Apply `reactify` to an object
## Usage
```ts
import { reactifyObject } from '@vueuse/core'
const reactifiedConsole = reactifyObject(console)
const a = ref('42')
reactifiedConsole.log(a) // no longer need `.value`
```
## Type Declarations
```ts
export type ReactifyNested<
T,
Keys extends keyof T = keyof T,
S extends boolean = true,
> = {
[K in Keys]: T[K] extends AnyFn ? Reactified<T[K], S> : T[K]
}
export type ReactifyObjectReturn<
T,
Keys extends keyof T,
S extends boolean = true,
> = ReactifyNested<T, Keys, S>
export interface ReactifyObjectOptions<T extends boolean>
extends ReactifyOptions<T> {
/**
* Includes names from Object.getOwnPropertyNames
*
* @default true
*/
includeOwnProperties?: boolean
}
/**
* Apply `reactify` to an object
*
* @__NO_SIDE_EFFECTS__
*/
export declare function reactifyObject<T extends object, Keys extends keyof T>(
obj: T,
keys?: (keyof T)[],
): ReactifyObjectReturn<T, Keys, true>
export declare function reactifyObject<
T extends object,
S extends boolean = true,
>(
obj: T,
options?: ReactifyObjectOptions<S>,
): ReactifyObjectReturn<T, keyof T, S>
```