Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skills/objectstack-platform/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ import type { Plugin, PluginContext } from '@objectstack/core';
export interface Plugin {
name: string; // Unique identifier (reverse domain recommended)
version?: string; // Semantic version
type?: string; // standard|ui|driver|server|app|theme|agent|objectql
type?: PluginType; // closed set exported by @objectstack/core
dependencies?: string[]; // Plugins that must init before this one

// Phase 1: Register services
Expand Down
2 changes: 1 addition & 1 deletion skills/objectstack-platform/rules/plugin-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface Plugin {
version?: string;

/** Plugin type */
type?: string; // standard|ui|driver|server|app|theme|agent|objectql
type?: PluginType; // closed set exported by @objectstack/core

/** Plugins that must init before this one */
dependencies?: string[];
Expand Down
Loading