Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Comprehensive 4D v21 development expert with embedded official documentation. Covers ORDA patterns, entity classes, data model classes, queries, classic methods, data types, error handling, forms, events, web server, and REST API. Use when working with 4D files (.4dm), 4D language questions, 4D project structure, entity classes, ORDA queries, database operations, form development, web server configuration, REST API usage, or any 4D-specific syntax issue. Includes full official 4D v21 documentation for on-demand retrieval. Triggers on: .4dm files, 4D code, ORDA, entity selection, dataclass, 4D query, 4D form, 4D web server, 4D REST, 4D command, 4D collection, 4D object. --- name: 4d-v21 description: > Comprehensive 4D v21 development expert with embedded official documentation. Covers ORDA patterns, entity classes, data model classes, queries, classic methods, data types, error handling, forms, events, web server, and REST API. Use when working with 4D files (.4dm), 4D language questions, 4D project structure, entity classes, ORDA queries, database operations, form development, web Capability contract not published. No trust telemetry is available yet. 7 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
4d-v21 is best for contain, match workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Comprehensive 4D v21 development expert with embedded official documentation. Covers ORDA patterns, entity classes, data model classes, queries, classic methods, data types, error handling, forms, events, web server, and REST API. Use when working with 4D files (.4dm), 4D language questions, 4D project structure, entity classes, ORDA queries, database operations, form development, web server configuration, REST API usage, or any 4D-specific syntax issue. Includes full official 4D v21 documentation for on-demand retrieval. Triggers on: .4dm files, 4D code, ORDA, entity selection, dataclass, 4D query, 4D form, 4D web server, 4D REST, 4D command, 4D collection, 4D object. --- name: 4d-v21 description: > Comprehensive 4D v21 development expert with embedded official documentation. Covers ORDA patterns, entity classes, data model classes, queries, classic methods, data types, error handling, forms, events, web server, and REST API. Use when working with 4D files (.4dm), 4D language questions, 4D project structure, entity classes, ORDA queries, database operations, form development, web
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 7 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Ganbin
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 7 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/Ganbin/4d-development-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Ganbin
Protocol compatibility
OpenClaw
Adoption signal
7 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
ls local/*.md 2>/dev/null
4d
// WRONG: = is comparison, returns True/False
$name = Request("Enter name") // Compares, doesn't assign!
If ($input = Request("Name")) // WRONG: compares, doesn't assign
// CORRECT: := is assignment
$name:=Request("Enter name") // Assigns
$input:=Request("Name")
If ($input # "") // Then compare separately4d
// Variables: case-INSENSITIVE $MyVar:="test" $myvar:="changed" // Same variable! // Object properties: case-SENSITIVE $obj.Name:="John" $obj.name:="Jane" // Different properties!
4d
// Collections: 0-based
$col:=New collection("A"; "B"; "C")
$first:=$col[0] // "A"
// Arrays: 1-based with special element zero
ARRAY TEXT($arr; 3)
$arr{1}:="A" // First element
$arr{0}:="default" // Special element zero4d
// WRONG: Null as placeholder doesn't work
$result:=ds.Users.query("email = :1"; Null)
// CORRECT: literal null in query string
$result:=ds.Users.query("email = null")
$active:=ds.Users.query("email != null")4d
// WRONG: conditions can match DIFFERENT collection elements
ds.Users.query("projects[].status = 'active' AND projects[].budget > 1000")
// CORRECT: [a] links conditions to the SAME element
ds.Users.query("projects[a].status = 'active' AND projects[a].budget > 1000")Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Comprehensive 4D v21 development expert with embedded official documentation. Covers ORDA patterns, entity classes, data model classes, queries, classic methods, data types, error handling, forms, events, web server, and REST API. Use when working with 4D files (.4dm), 4D language questions, 4D project structure, entity classes, ORDA queries, database operations, form development, web server configuration, REST API usage, or any 4D-specific syntax issue. Includes full official 4D v21 documentation for on-demand retrieval. Triggers on: .4dm files, 4D code, ORDA, entity selection, dataclass, 4D query, 4D form, 4D web server, 4D REST, 4D command, 4D collection, 4D object. --- name: 4d-v21 description: > Comprehensive 4D v21 development expert with embedded official documentation. Covers ORDA patterns, entity classes, data model classes, queries, classic methods, data types, error handling, forms, events, web server, and REST API. Use when working with 4D files (.4dm), 4D language questions, 4D project structure, entity classes, ORDA queries, database operations, form development, web
docs/ (3,387 files)This skill targets 4D v21 specifically. Do not assume features from other versions exist unless verified in the embedded documentation.
CRITICAL: For any 4D task, ALWAYS prefer reading the embedded documentation files (docs/) over relying on training data. The docs/ folder contains the authoritative 4D v21 reference.
Workflow:
references/ file for curated knowledge and patternsdocs/ file pointed to by the referencedocs/docs/ doesn't cover the topicPriority reading: Always check references/manual-insights.md — it contains real-world corrections from code reviews that override documentation.
Before providing 4D guidance, check if a local/ directory exists in this skill folder with project-specific conventions:
ls local/*.md 2>/dev/null
If files exist, read them first. The local/ directory (gitignored) can contain:
These are the most common sources of bugs in 4D code. Know them by heart.
// WRONG: = is comparison, returns True/False
$name = Request("Enter name") // Compares, doesn't assign!
If ($input = Request("Name")) // WRONG: compares, doesn't assign
// CORRECT: := is assignment
$name:=Request("Enter name") // Assigns
$input:=Request("Name")
If ($input # "") // Then compare separately
Rule: := assigns. = compares. Never mix them.
// Variables: case-INSENSITIVE
$MyVar:="test"
$myvar:="changed" // Same variable!
// Object properties: case-SENSITIVE
$obj.Name:="John"
$obj.name:="Jane" // Different properties!
// Collections: 0-based
$col:=New collection("A"; "B"; "C")
$first:=$col[0] // "A"
// Arrays: 1-based with special element zero
ARRAY TEXT($arr; 3)
$arr{1}:="A" // First element
$arr{0}:="default" // Special element zero
// WRONG: Null as placeholder doesn't work
$result:=ds.Users.query("email = :1"; Null)
// CORRECT: literal null in query string
$result:=ds.Users.query("email = null")
$active:=ds.Users.query("email != null")
// WRONG: conditions can match DIFFERENT collection elements
ds.Users.query("projects[].status = 'active' AND projects[].budget > 1000")
// CORRECT: [a] links conditions to the SAME element
ds.Users.query("projects[a].status = 'active' AND projects[a].budget > 1000")
$obj:=New object("count"; 5)
Value type($obj.count) // Returns Is real, NEVER Is longint
$price:=19.99 // CORRECT — always period
$price:=19,99 // WRONG — two separate numbers!
if ($length > 1+$i) // Runtime error: $length>1 -> true -> true+$i -> error
if ($length > (1+$i)) // No error
$result:=3+4*5 // 35
$result:=3+(4*5) // 23
| Task | Read First | Then If Needed |
|------|-----------|----------------|
| Syntax errors, operators | language-syntax.md | docs/Concepts/operators.md |
| Data types, conversions | data-types.md | docs/Concepts/data-types.md |
| ORDA, entity classes | orda-modern.md | docs/ORDA/ordaClasses.md |
| Database queries | query-patterns.md | docs/API/DataClassClass.md |
| Error handling | error-handling.md | docs/Concepts/error-handling.md |
| Legacy/classic code | classic-patterns.md | docs/Concepts/arrays.md |
| Forms, events, UI | forms-and-ui.md | events-index.md |
| Web server, REST API | web-and-rest.md | rest-index.md |
| Specific class API | api-index.md | docs/API/{ClassName}Class.md |
| Specific command | commands-index.md | docs/commands/{name}.md |
| Legacy command | legacy-commands-index.md | docs/commands-legacy/{name}.md |
| Error or Symptom | Read |
|-----------------|------|
| "Type mismatch" or wrong type | data-types.md |
| "Cannot use = to assign" / silent assignment bug | language-syntax.md |
| Query returns wrong results | query-patterns.md |
| "Null query" not working | manual-insights.md |
| Entity/EntitySelection methods | orda-modern.md then api-index.md |
| Form events not firing | forms-and-ui.md then events-index.md |
| Process variables not working | classic-patterns.md |
| REST endpoint 404 or auth error | web-and-rest.md |
| Transaction or save error | error-handling.md |
| local keyword confusion | manual-insights.md |
| Need to find a specific 4D command | commands-index.md |
| Need to find a legacy command | legacy-commands-index.md |
The docs/ folder contains the full official 4D v21 documentation (3,387 files, 48MB). Use this section to find the right file.
| Need | Directory | File Pattern | Example Path |
|------|-----------|-------------|--------------|
| Class API reference | docs/API/ | {Class}Class.md | docs/API/CollectionClass.md |
| ORDA concepts | docs/ORDA/ | {topic}.md | docs/ORDA/entities.md |
| Modern commands | docs/commands/ | {command-name}.md | docs/commands/dialog.md |
| Commands by theme | docs/commands/theme/ | {Theme}.md | docs/commands/theme/JSON.md |
| Language concepts | docs/Concepts/ | {topic}.md | docs/Concepts/classes.md |
| REST endpoints | docs/REST/ | ${endpoint}.md | docs/REST/$filter.md |
| Form events | docs/Events/ | on{Event}.md | docs/Events/onClicked.md |
| Form objects | docs/FormObjects/ | {type}_overview.md | docs/FormObjects/listbox_overview.md |
| Web server | docs/WebServer/ | {topic}.md | docs/WebServer/sessions.md |
| Legacy commands | docs/commands-legacy/ | {command-name}.md | docs/commands-legacy/alert.md |
| Settings | docs/settings/ | {topic}.md | docs/settings/web.md |
| Project structure | docs/Project/ | {topic}.md | docs/Project/architecture.md |
| AI Kit | docs/aikit/ | various | docs/aikit/ |
| ViewPro | docs/ViewPro/ | various | docs/ViewPro/ |
| WritePro | docs/WritePro/ | various | docs/WritePro/ |
When you need to find something specific across docs/:
# Find a command by name
grep -rl "title: CommandName" docs/commands/ docs/commands-legacy/
# Find a class method
grep -rl "\.methodName" docs/API/
# Find usage of a specific function
grep -rl "functionName" docs/ --include="*.md"
# Find a form event
ls docs/Events/on*.md
# Find a form object type
ls docs/FormObjects/*_overview.md
# Find a REST endpoint
ls docs/REST/\$*.md
# Find settings for a topic
grep -rl "keyword" docs/settings/
# Find a legacy command by theme
grep -rl "CommandName" docs/commands/theme/
For structured navigation of large categories, read these generated indexes:
| Index | Content | Files Indexed | |-------|---------|---------------| | api-index.md | All API classes with key methods | 42 | | commands-index.md | Modern commands + theme categories | 65 + 76 | | concepts-index.md | Language concept files | 29 | | orda-index.md | ORDA documentation structure | 10 | | rest-index.md | REST API endpoints | 36 | | events-index.md | Form and system events | 61 | | form-objects-index.md | Form object types | 54 | | webserver-index.md | Web server documentation | 14 | | legacy-commands-index.md | Legacy commands by theme | 1,211 | | all-categories-index.md | Master navigation | 32 categories |
| File | Covers | Priority | |------|--------|----------| | language-syntax.md | Assignment, operators, control flow, methods, classes, strings, formulas | High — read for any syntax question | | data-types.md | All types, conversions, null/undefined, collections, objects, pointers | High — read for type errors | | orda-modern.md | ORDA architecture, entity classes, computed attributes, shared objects, signals | High — read for new feature development | | query-patterns.md | Query syntax, placeholders, null queries, linked collections, formulas, performance | High — read for any query work | | error-handling.md | Try/Catch, ON ERR CALL, transactions, Throw, logging | Medium — read when handling errors | | classic-patterns.md | Arrays, process variables, pointers, sets, migration strategies | Medium — read for legacy code | | forms-and-ui.md | Forms, events, form objects, list boxes, subforms, form classes | Medium — read for UI work | | web-and-rest.md | Web server, REST API, HTTP handlers, sessions, authentication | Medium — read for web/REST work | | manual-insights.md | Real-world corrections from code reviews — overrides other sources | Always check for edge cases |
New Feature Development:
docs/API/ files for class method detailsLegacy Code Maintenance:
Debugging:
Web/REST Development:
When the embedded docs don't cover your case:
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:29:16.579Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "contain",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "match",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:contain|supported|profile capability:match|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Ganbin",
"href": "https://github.com/Ganbin/4d-development-skill",
"sourceUrl": "https://github.com/Ganbin/4d-development-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:14:53.860Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T01:14:53.860Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "7 GitHub stars",
"href": "https://github.com/Ganbin/4d-development-skill",
"sourceUrl": "https://github.com/Ganbin/4d-development-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:14:53.860Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/ganbin-4d-development-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to 4d-v21 and adjacent AI workflows.