skills/arkui-api-design/SKILL.md
This skill should be used when the user asks to "design ArkUI API", "add component property", "create Modifier method", "review ArkUI API", "deprecate API", "write JSDOC for ArkUI", or mentions OpenHarmony API design standards. Provides comprehensive guidance for ArkUI component API design following OpenHarmony coding guidelines, including static/dynamic interface synchronization, SDK compilation, and verification.
npx skillsauth add openharmonyinsight/openharmony-skills arkui-api-designInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill provides comprehensive guidance for designing, reviewing, and maintaining ArkUI component APIs that follow OpenHarmony Application TypeScript/JavaScript coding guidelines.
All API definitions and code examples must comply with the OpenHarmony Application TypeScript/JavaScript Coding Guide. Key standards include:
For detailed standards, refer to: references/OpenHarmony-Application-Typescript-JavaScript-coding-guide.md
CRITICAL: When adding or modifying component properties, you must update both static and dynamic interface files:
.static.d.ets)OpenHarmony/interface/sdk-js/api/arkui/component/<component>.static.d.ets@Builder functions@static after @since [version] (e.g., @since 26 static)// File: text.static.d.ets
/**
* Provides a text component.
*
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 static
*/
declare class Text {
/**
* Text content.
*
* @type { string | Resource }
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 static
* @stagemodelonly
*/
content: string | Resource;
/**
* Creates a text component.
*
* @param content - Text content.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 static
* @stagemodelonly
*/
constructor(content: string | Resource);
}
.d.ts Attribute Interface)OpenHarmony/interface/sdk-js/api/@internal/component/ets/<component>.d.tsdynamic after @since [version] (e.g., @since 26 dynamic)// File: text.d.ts (in @internal/component/ets/)
/**
* Text Attribute interface.
*
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
declare class TextAttribute extends CommonMethod<TextAttribute> {
/**
* Sets the text content.
*
* @param value - Text content to display.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
* @stagemodelonly
*/
content(value: string | Resource): TextAttribute;
}
Note: The *Modifier.d.ts files in arkui/ directory only define the Modifier class (for AttributeModifier pattern), not the Attribute interface itself.
| Scenario | Static API | Dynamic API |
|----------|-----------|-------------|
| Add property | Add to class/interface | Add to Attribute class |
| Deprecate property | Mark as @deprecated | Mark as @deprecated |
| Change signature | Update class definition | Update Attribute method |
| File location | arkui/component/*.static.d.ets | @internal/component/ets/*.d.ts |
| Version tag | @since X static | @since X dynamic |
| Return type | Use this for chainable | Use concrete Attribute type |
IMPORTANT: Not all properties need Resource type support. Only add Resource type when the property is intended to be configured through resource files (theming, i18n, etc.).
When to support Resource type:
Type Simplification Rule:
CRITICAL: Only use ResourceStr for NEW APIs (API 13+). Do NOT use ResourceStr to modify existing APIs (API 12 and earlier).
When to use ResourceStr:
// ❌ WRONG: Using ResourceStr for API 12 (existing property)
content(value: ResourceStr): TextAttribute // API 12 - DO NOT MODIFY
// ✅ CORRECT: Using string | Resource for API 12 (maintaining backward compatibility)
content(value: string | Resource): TextAttribute // API 12 - KEEP AS IS
// ✅ CORRECT: Using ResourceStr for NEW API 13 (new property)
fontSize(value: number | string | Length | ResourceStr): TextAttribute // API 13 - NEW PROPERTY
// Benefits:
// - Maintains backward compatibility for existing APIs
// - Allows simplification for new APIs
// - Clear version boundary at API 13
Examples of properties that SHOULD support Resource:
// Theme-related - YES, support Resource (API 12: keep original type)
fontSize(value: number | string | Length | Resource): TextAttribute
// API 12 and earlier: Maintain string | Resource for compatibility
// Theme-related - YES, support Resource (API 13+: use ResourceStr)
fontSize(value: number | string | Length | ResourceStr): TextAttribute
// API 13 and later: Simplified type
// Usage examples (API 12 - old API, keep string | Resource):
Text().fontSize(16) // number
Text().fontSize('16vp') // string
Text().fontSize($r('app.float.font_size_large')) // Resource
// Usage examples (API 13+ - new API, use ResourceStr):
Text().fontSize(16) // number
Text().fontSize('16vp') // string
Text().fontSize($r('app.float.font_size_large')) // Resource (ResourceStr covers this too)
Examples of properties that SHOULD NOT support Resource:
// State flags - NO, these are runtime-only
stateEffect(value: boolean): ButtonAttribute
enabled(value: boolean): CommonMethod
// Event callbacks - NO, these are runtime-only
onClick(callback: () => void): CommonMethod
Benefits of ResourceStr support (for NEW APIs only):
ResourceStr instead of string | ResourceJSDOC comments must explicitly specify how undefined and null values are handled:
/**
* Sets font size of text.
* @param value Font size value. If undefined, restores to default size (16fp).
* If null, removes the font size setting and uses inherited value.
* @throws {Error} Throws error if value is negative.
* @since 10
*/
fontSize(value: number | string | Length | Resource | undefined | null): TextAttribute;
Common patterns:
undefined → Restore default valuenull → Remove setting, use inherited valueAlways use vp (virtual pixels) as default unit for length measurements:
// Good: Default to vp
width(value: number | string): ButtonAttribute // 100 means 100vp
// Good: Explicit vp
width(value: Length): ButtonAttribute // Length.type defaults to vp
// Avoid: Require px without good reason
width(value: number): ButtonAttribute // 100px - avoid unless necessary
JSDOC comments must include specification limits and constraints:
/**
* Sets border radius of component.
* @param value Border radius value. Valid range: 0-1000vp.
* Values exceeding 1000vp will be clamped to 1000vp.
* Negative values are treated as 0.
* @unit vp
* @since 10
*/
borderRadius(value: number | string | Length): CommonMethod;
Required documentation:
When adding common properties, evaluate impact on all components:
Before adding common property:
Example common properties:
width(), height(), padding(), margin()opacity(), visibility(), borderRadius()onClick(), onTouch()CRITICAL: The phrase "Called when" must ONLY be used for event callback functions and lifecycle methods that are invoked by the framework. It MUST NOT be used for property setters, configuration methods, or attribute modifiers.
✅ CORRECT: Event callbacks and lifecycle methods
/**
* Callback invoked when the paste button is clicked.
*
* @param callback - Callback function for the click event.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 10 dynamic
*/
onClick(callback: Callback<ClickEvent>): PasteButtonAttribute;
/**
* Callback invoked when the playback progress changes.
*
* @param callback - Callback function with playback info.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
onProgress(callback: Callback<PlaybackInfo>): VideoAttribute;
/**
* Callback invoked when scrolling begins each frame.
*
* @param callback - Callback function for scroll frame begin event.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 9 dynamic
*/
onScrollFrameBegin(callback: (offset: number, state: ScrollState) => ScrollOffset): ListAttribute;
/**
* Callback invoked when the water flow reaches the end.
*
* @param callback - Callback function for reach end event.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 9 dynamic
*/
onReachEnd(callback: () => void): WaterFlowAttribute;
❌ INCORRECT: Property setters and configuration methods
// ❌ WRONG: "Called when" used for property setter
/**
* Called when the font size is set.
*/
fontSize(value: number | string | Resource): TextAttribute;
// ✅ CORRECT: Use action verbs for property setters
/**
* Sets the font size for the text component.
*
* @param value - Font size in fp. Valid range: 0-1000fp.
* @unit fp
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
fontSize(value: number | string | Length | Resource): TextAttribute;
// ❌ WRONG: "Called when" used for configuration method
/**
* Called when the border color is set.
*/
stroke(value: ResourceColor): ShapeAttribute;
// ✅ CORRECT: Use action verbs for configuration methods
/**
* Sets the stroke (border) color of the shape.
*
* @param value - Stroke color to apply.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 9 dynamic
*/
stroke(value: ResourceColor): ShapeAttribute;
// ❌ WRONG: "Called when" used for layout property
/**
* Called when the vertical alignment is set.
*/
alignItems(value: AlignItems): RowAttribute;
// ✅ CORRECT: Use action verbs for layout properties
/**
* Sets the vertical alignment of child components.
*
* @param value - Alignment mode for child components.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
alignItems(value: AlignItems): RowAttribute;
Is this an event callback or lifecycle method?
├─ Yes → Use "Called when" or "Callback invoked when"
│ Examples: onClick, onScroll, onAppear, onDisAppear
│
└─ No → Use action verbs (Sets, Specifies, Configures, Enables/Disables)
Examples: fontSize(), fontWeight(), padding(), stateEffect()
| API Type | Correct Phrasing | Examples |
|----------|------------------|----------|
| Property setters | "Sets the [property]." / "Specifies the [property]." | Sets the font size., Specifies the text color. |
| Configuration methods | "Configures the [feature]." / "Enables/Disables the [feature]." | Enables the state effect., Configures the scroll behavior. |
| Event callbacks | "Called when [event]." / "Callback invoked when [event]." | Called when clicked., Called when the scroll position changes. |
| Lifecycle methods | "Called when [lifecycle event]." | Called when the component appears., Called when the component is about to disappear. |
"Called when the [property] is set" - This is the most common incorrect pattern
Called when the font weight is set.Sets the font weight of the text."Called when [action]" for non-callback methods - Confuses property setters with callbacks
Called when drawing a polygon. (for a property setter)Sets the drawing options for the polygon.Passive voice for active configuration - Use active verbs for setter methods
When the border color is set...Sets the border color of the component.// Text Properties
/**
* Sets the font style for the text component.
*
* @param value - Font style to apply. Default is FontStyle.Normal.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
fontStyle(value: FontStyle): TextAttribute;
/**
* Sets the font weight (text thickness).
*
* @param value - Font weight value. If too large, text may be clipped.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
fontWeight(value: number | FontWeight | ResourceStr): TextAttribute;
/**
* Sets the horizontal text alignment.
*
* @param value - Text alignment mode.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
textAlign(value: TextAlign): TextAttribute;
// Shape Properties
/**
* Sets the fill color of the shape.
*
* @param value - Fill color to apply.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 9 dynamic
*/
fill(value: ResourceColor): ShapeAttribute;
/**
* Sets the stroke (border) width.
*
* @param value - Stroke width in vp. Valid range: 0-1000vp.
* @unit vp
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 9 dynamic
*/
strokeWidth(value: Length): ShapeAttribute;
// Layout Properties
/**
* Sets the horizontal alignment of child components.
*
* @param value - Horizontal alignment mode.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
justifyContent(value: MainAxisAlignment): CommonMethod;
/**
* Sets the vertical alignment of child components.
*
* @param value - Vertical alignment mode.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
alignItems(value: AlignItems): CommonMethod;
During API design and compilation verification, work only with files within interface/ directory:
Allowed modifications:
interface/sdk-js/api/arkui/component/*.static.d.ets - Static API definitionsinterface/sdk-js/api/@internal/component/ets/*.d.ts - Dynamic API definitions (Attribute classes)interface/sdk-js/api/arkui/*Modifier.d.ts - Modifier class definitions (for AttributeModifier pattern)Do NOT modify:
ace_engine/1. Design API
├─ Define property types and constraints
├─ Document undefined/null behavior
└─ Check cross-component impact
2. Create Static API (.static.d.ets)
├─ Add property to component class
├─ Write complete JSDOC
└─ Include @since, @syscap tags
3. Create Dynamic API (@internal/component/ets/*.d.ts)
├─ Add method to Attribute class
├─ Match signature with static API
└─ Synchronize JSDOC documentation
4. Verify Type Safety
├─ Check TypeScript compilation
├─ Validate type definitions
└─ Ensure signature consistency
5. Build SDK
├─ Run SDK build command
└─ Monitor compilation errors
6. Verify SDK Output
├─ Check generated API files
├─ Verify new APIs are exported
└─ Test API availability
component/*.static.d.ets)
@internal/component/ets/*.d.ts)
Use the following checklist to verify:
.static.d.ets) exists and is complete@internal/component/ets/*.d.ts) exists and is synchronized@since X static vs @since X dynamic)this in static, concrete type in dynamic)CRITICAL: When deprecating an API, you MUST mark BOTH the static API property/method AND the corresponding dynamic API method as @deprecated.
@deprecatedSynchronization Requirement:
After completing API design changes, build the SDK to verify compilation and generate output:
# From OpenHarmony root directory
./build.sh --export-para PYCACHE_ENABLE:true --product-name ohos-sdk --ccache
Build Parameters:
--export-para PYCACHE_ENABLE:true - Enable Python cache for faster builds--product-name ohos-sdk - Build SDK target--ccache - Use compiler cache for incremental buildsBuild Output Location:
out/ohos-sdk/
├── interfaces/
│ └── sdk-js/
│ └── api/
│ └── arkui/
│ ├── component/ # Generated .static.d.ets files
│ │ ├── button.static.d.ets
│ │ ├── text.static.d.ets
│ │ └── ...
│ ├── ButtonModifier.d.ts # Generated .d.ts files
│ ├── TextModifier.d.ts
│ └── ...
After SDK build completes successfully:
# Check if .static.d.ets file contains your changes
grep -n "yourNewProperty" out/ohos-sdk/interfaces/sdk-js/api/arkui/component/<yourcomponent>.static.d.ets
# Check if @internal/component/ets/*.d.ts file contains your changes
grep -n "yourNewMethod" out/ohos-sdk/interfaces/sdk-js/api/@internal/component/ets/<your_component>.d.ts
.static.d.ets) contains new/modified properties@internal/component/ets/*.d.ts) contains corresponding methods@since X static vs @since X dynamic)| Issue | Symptom | Solution | |-------|----------|----------| | Type mismatch | Build fails with type error | Check signatures match between static/dynamic APIs | | Missing import | Cannot find type | Add proper import statements | | JSDOC error | Documentation warning | Fix JSDOC syntax, ensure all tags are valid | | Sync error | API exists in one file only | Add to both static and dynamic files |
button.static.d.ets/**
* Provides a button component.
*
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7
*/
declare class Button {
/**
* Button type.
*
* @type { ButtonType }
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7
*/
type: ButtonType;
/**
* Button state.
*
* @type { ButtonState }
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7
*/
stateEffect: boolean;
/**
* Creates a button component.
*
* @param label - Button label text.
* @param options - Button options.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7
*/
constructor(label: string | Resource, options?: ButtonOptions);
}
button.d.ts (in @internal/component/ets/)/**
* Button Attribute class.
*
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
declare class ButtonAttribute extends CommonMethod<ButtonAttribute> {
/**
* Sets the button type.
*
* @param value - Button type to set.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
type(value: ButtonType): ButtonAttribute;
/**
* Enables or disables state effect.
*
* @param value - Whether to enable state effect. Default is true.
* If undefined, enables state effect.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
*/
stateEffect(value: boolean): ButtonAttribute;
}
iconSize to ButtonStatic API Update:
// File: button.static.d.ets
declare class Button {
// Existing properties...
/**
* Icon size.
*
* @type { number | string }
* @unit vp
* @default 24vp
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 12
*/
iconSize: number | string;
}
Dynamic API Update:
// File: button.d.ts (in @internal/component/ets/)
declare class ButtonAttribute extends CommonMethod<ButtonAttribute> {
// Existing methods...
/**
* Sets the icon size.
*
* @param value - Icon size in vp. Valid range: 0-100vp.
* If undefined, restores to default size (24vp).
* @unit vp
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 12 dynamic
*/
iconSize(value: number | string | Length | undefined): ButtonAttribute;
}
setFontSize in favor of fontSizeStatic API:
declare class Text {
/**
* Font size.
*
* @type { number | string | Resource }
* @unit fp
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7
*/
fontSize: number | string | Resource;
/**
* Sets the font size.
*
* @param value - Font size value.
* @deprecated since 10. Use fontSize property instead.
* @see fontSize
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7
* @obsoleted 10
*/
setFontSize(value: number | string | Resource): void;
}
Dynamic API:
// File: text.d.ts (in @internal/component/ets/)
declare class TextAttribute extends CommonMethod<TextAttribute> {
/**
* Sets the font size.
*
* @param value - Font size in fp. Valid range: 0-1000fp.
* @unit fp
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 10 dynamic
*/
fontSize(value: number | string | Length | Resource | undefined | null): TextAttribute;
/**
* Sets the font size (deprecated method).
*
* @param value - Font size value.
* @deprecated since 10. Use fontSize() instead.
* @see fontSize
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 7 dynamic
* @obsoleted 10
*/
setFontSize(value: number | string | Resource): TextAttribute;
}
// ❌ Bad: Only static API defined
// File: text.static.d.ets
declare class Text {
content: string | Resource;
}
// Missing: @internal/component/ets/text.d.ts has no content() method
// ✅ Good: Both APIs synchronized
// File: text.static.d.ets
declare class Text {
content: string | Resource;
}
// File: text.d.ts (in @internal/component/ets/)
declare class TextAttribute extends CommonMethod<TextAttribute> {
content(value: string | Resource): TextAttribute;
}
// ❌ Bad: Signatures don't match
// Static: .static.d.ets
iconSize: number;
// Dynamic: @internal/component/ets/*.d.ts
iconSize(value: number | string | Resource): ButtonAttribute; // Different types!
// ✅ Good: Consistent types
// Static: .static.d.ets
iconSize: number | string;
// Dynamic: @internal/component/ets/*.d.ts
iconSize(value: number | string): ButtonAttribute; // Matches
// ❌ Bad: Missing null/undefined handling, constraints
/**
* Sets the width.
*/
width(value: number): CommonMethod;
// ✅ Good: Complete documentation
/**
* Sets the component width.
* @param value Width value in vp. Valid range: 0-10000vp.
* If undefined, restores default width.
* @unit vp
* @since 8
* @syscap SystemCapability.ArkUI.ArkUI.Full
*/
width(value: number | string | Length | undefined): CommonMethod;
// ⚠️ Less optimal: Only accepts number/string
fontSize(value: number | string): TextAttribute;
// ✅ Better: Supports resource theming
fontSize(value: number | string | Length | Resource): TextAttribute;
references/OpenHarmony-Application-Typescript-JavaScript-coding-guide.md
examples/interface-definition.ts - Complete interface definition exampleexamples/modifier-implementation.ts - Modifier method implementation exampleexamples/deprecation-pattern.ts - API deprecation with migration exampleexamples/static-dynamic-sync.ts - Static/Dynamic API synchronization exampledocs/sdk/Component_API_Knowledge_Base_CN.md - ArkUI 组件 API 知识库
docs/sdk/ArkUI_SDK_API_Knowledge_Base.md - ArkUI SDK API 结构化分析文档
/**
* Brief description.
* @param paramName Description including undefined/null behavior and constraints.
* @unit vp | fp | px (for length values)
* @throws {ErrorType} Description (when errors can occur)
* @since version static (for Static API - use "static" after version)
* @since version dynamic (for Dynamic API - use "dynamic" after version)
* @syscap SystemCapability.ArkUI.ArkUI.Full (system capability)
* @stagemodelonly (indicates this is a stage model only API)
* @deprecated Use alternativeMethod() instead (for deprecated APIs)
* @obsoleted version (when API was removed)
*/
Important Tag Rules:
.static.d.ets): Use @since X static format (e.g., @since 26 static)*Modifier.d.ts): Use @since X dynamic format (e.g., @since 26 dynamic)@stagemodelonly tag to indicate stage model onlyDoes the parameter accept length values?
├─ Yes → Add Length and Resource types
└─ No → Is it theme-able (color, size, string)?
├─ Yes → Add Resource type
└─ No → Use basic types (number | string | undefined | null)
// Document defaults in JSDOC:
"If undefined, restores to default [value] ([unit])."
"If null, removes setting and uses inherited value."
| Aspect | Static API (.static.d.ets) | Dynamic API (*.d.ts) |
|--------|----------------------------|-------------------------------|
| File Location | arkui/component/ | @internal/component/ets/ |
| Usage | Text({ content: 'Hello' }) | Text().content('Hello') |
| Type | Class declaration | Class extending CommonMethod |
| Pattern | Constructor-based | Method chaining |
| Return Type | N/A (properties) | Concrete Attribute type |
| Version Tag | @since X static | @since X dynamic |
| Both Required | ✅ Yes | ✅ Yes |
Before finalizing any API, verify:
interface/sdk-js/api/arkui/component/*.static.d.etsinterface/sdk-js/api/@internal/component/ets/*.d.ts@since XX static vs @since XX dynamicButtonAttribute)@since 26 static@since 26 dynamic❌ Bad: Only static file updated
// Static: richEditor.static.d.ets
default lineSpacing(value: LengthMetrics | undefined): this;
// Dynamic: rich_editor.d.ts
// Method is missing! ✗
✅ Good: Both files updated
// Static: richEditor.static.d.ets
default lineSpacing(value: LengthMetrics | undefined, options?: LineSpacingOptions): this;
// Dynamic: rich_editor.d.ts
lineSpacing(value: LengthMetrics | undefined, options?: LineSpacingOptions): RichEditorAttribute;
❌ Bad: Different parameter types
// Static:
default lineSpacing(value: LengthMetrics): this;
// Dynamic:
lineSpacing(value: LengthMetrics | undefined): RichEditorAttribute;
// ✗ Parameter types don't match!
✅ Good: Identical parameter types
// Static:
default lineSpacing(value: LengthMetrics | undefined, options?: LineSpacingOptions): this;
// Dynamic:
lineSpacing(value: LengthMetrics | undefined, options?: LineSpacingOptions): RichEditorAttribute;
// ✓ Parameters match perfectly
❌ Bad: Generic version tags
// Static: @since 26
// Dynamic: @since 26
// ✗ Missing static/dynamic specification
✅ Good: Proper version tags
// Static: @since 26 static
// Dynamic: @since 26 dynamic
// ✓ Clear distinction
❌ Bad: Looking for dynamic API in wrong location
// Looking in: arkui/ButtonModifier.d.ts
// This file only defines Modifier class, not Attribute interface!
✅ Good: Correct file location
// Dynamic API is in: @internal/component/ets/button.d.ts
// This file defines ButtonAttribute class with all methods
testing
--- name: ohos-req-value-decision description: Use after review meeting to record decision and route to next step. Triggers: 评审决策纪要, 评审结论回流, value decision, 评审接纳, 评审不接纳, 评审退回, 下次重新上会. Do NOT use for feature baseline (ohos-req-feature-baseline), review gate checks (ohos-req-review-gate), or IR generation (ohos-req-feature-to-ir). metadata: author: openharmony scope: common stage: requirements capability: value-decision version: 0.3.0 status: draft tags: - sdd - requirements
development
Use when converting an OpenHarmony requirement document, spec, or design proposal into an OpenHarmony review slide deck (需求评审 / 需求变更评审 / 设计评审 PPTX) — produces the fixed OpenHarmony-branded review-deck structure (OH logo on every page) with architecture/flow diagrams and field tables. Triggers on "需求评审PPT", "需求变更评审", "把需求文档转成评审PPT", "spec转评审PPT", "requirement/spec to review deck". NOT for arbitrary or generic slide decks unrelated to OpenHarmony requirement/design review.
testing
Use when performing the Phase 0 Step 0.5 Review Ready Gate on a 04-feature.md, especially when the user says "evaluate gate", "review readiness", "feature ready?", "should we generate IR", or when the ohos-req-intake-orchestration main session needs a structured Ready / Conditional Ready / Not Ready judgment instead of doing the check inline. Reads 01-04, runs seven fixed checks plus a conditional-items check, and returns a machine-readable JSON summary plus a human-readable table that the main session can route on. Do NOT use for feature baseline generation (ohos-req-feature-baseline), value decision recording (ohos-req-value-decision), or IR generation (ohos-req-feature-to-ir).
testing
--- name: ohos-req-requirement-intake description: Use when importing an OHOS requirement into Phase 0.1, especially for 01-requirement.md, requirement intake, background, user value, scenarios, scope, FR/NFR, affected modules, or priority. Triggers: 需求导入, 01-requirement, 需求基线, RR单号. Do NOT use for feasibility analysis (ohos-req-feasibility-analysis), architecture decision (ohos-req-arch-decision), or feature baseline (ohos-req-feature-baseline). metadata: author: openharmony scope: common