You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor skills structure: rename objectstack-data to objectstack-schema, objectstack-kernel to objectstack-plugin, and introduce objectstack-query. Update documentation and references accordingly. Consolidate hooks into objectstack-schema and deprecate objectstack-hooks. Enhance pagination and filtering rules in objectstack-query with comprehensive guides and examples.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
-**`rules/` directory** — Detailed implementation rules with incorrect/correct code examples for better AI comprehension
14
14
-**`evals/` directory** — Placeholder for future evaluation tests to validate AI assistant understanding
15
15
-**Skills refactored:**
16
-
-`objectstack-data` — Extracted rules for naming, relationships, validation, indexing, field types, and hooks (moved from objectstack-hooks)
17
-
-`objectstack-kernel` — Extracted rules for plugin lifecycle, service registry, and hooks/events system
18
-
-`objectstack-hooks` — **DEPRECATED** and consolidated into `objectstack-data/rules/hooks.md` (hooks are core to data operations)
16
+
-`objectstack-schema` (formerly `objectstack-data`) — Extracted rules for naming, relationships, validation, indexing, field types, and hooks (moved from objectstack-hooks)
17
+
-`objectstack-plugin` (formerly `objectstack-kernel`) — Extracted rules for plugin lifecycle, service registry, and hooks/events system
18
+
-`objectstack-query` — NEW skill for filters, sorting, pagination, aggregation, joins, expand, full-text search, window functions
19
+
-`objectstack-hooks` — **DEPRECATED** and consolidated into `objectstack-schema/rules/hooks.md` (hooks are core to data operations)
19
20
-`objectstack-ui`, `objectstack-api`, `objectstack-automation`, `objectstack-ai`, `objectstack-i18n`, `objectstack-quickstart` — Added `rules/` and `evals/` structure with initial pattern documentation
20
21
-**Benefits:**
21
22
- Improved maintainability — Detailed rules are separated from high-level overview
Hooks are a core part of data operations and are best documented alongside object definitions, field types, and validations. The objectstack-data skill now provides comprehensive coverage of:
30
+
Hooks are a core part of data operations and are best documented alongside object definitions, field types, and validations. The objectstack-schema skill now provides comprehensive coverage of:
31
31
32
32
- Object and field schema design
33
33
- Validation rules
@@ -40,10 +40,10 @@ This consolidation reduces skill overlap and makes it easier for AI assistants t
0 commit comments