Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
Repositorio de GitHub

zolinga

zolinga contiene 32 skills recopiladas de webdevelopers-eu, con cobertura ocupacional por repositorio y páginas de detalle dentro del sitio.

skills recopiladas
32
Stars
4
actualizado
2026-07-22
Forks
0
Cobertura ocupacional
6 categorías ocupacionales · 100% clasificado
explorador de repositorios

Skills en este repositorio

system-create-mcp-resource
Otras ocupaciones informáticas

Use when creating or updating MCP resources — static files exposed to MCP clients via `resources/list` and `resources/read`. Covers `.meta.json` descriptors, URI rewriting, dynamic resources via `mcp:resources/list` event hook, and the `mcp-system` scheme.

2026-07-22
system-convert-remote-event-to-mcp-tool
Desarrolladores de software

Use when exposing an existing `origin: ["remote"]` listener as an MCP tool without rewriting the handler. Covers the one-line manifest pattern that re-uses the same class+method, plus the minimal schema work needed to satisfy `McpToolsListHandler::collectTools()`. Complements system-create-mcp-tool (which covers the greenfield case).

2026-07-21
system-create-mcp-tool
Desarrolladores de software

Use when exposing a Zolinga event handler as an MCP (Model Context Protocol) tool — i.e. a method clients can invoke via JSON-RPC `tools/call`. Covers handler class, manifest binding, JSON Schemas, the `Tools\CallEvent` contract, and the `schema.response` requirement enforced by `McpToolsListHandler::collectTools()`.

2026-07-21
system-events-client
Desarrolladores de software

Use when working with the JavaScript client-side event system in Zolinga. Covers the Event class, Api gateway, dispatching events from JS to PHP, receiving broadcastBack responses, inter-component communication via BroadcastChannel, and web component integration.

2026-07-15
system-translations
Desarrolladores de software

Use when adding localized strings in PHP or HTML, including gettext usage patterns and context-aware translation strings for Zolinga Intl.

2026-07-06
system-php-coding-style
Desarrolladores de software

Use when writing or reviewing PHP code in this repository to enforce strict typing, naming, file layout, and listener/service interface conventions.

2026-06-27
system-create-handler
Desarrolladores de software

Use when creating a new event handler/listener in a Zolinga module, including event naming, class placement, origin filtering, rights checks, and event object selection.

2026-06-27
system-create-service
Desarrolladores de software

Use when creating or wiring a Zolinga service exposed on global $api via system:service events, including manifest sugar, naming, initialization, and special service/listener combinations.

2026-06-27
system-documentation
Desarrolladores de software

Use when writing or updating user-facing wiki documentation for features, modules, events, or content tags. Guides a user-oriented writing style focused on tasks and outcomes rather than internal implementation.

2026-06-27
system-events-server
Desarrolladores de software

Use when creating, dispatching, or handling PHP server-side events in Zolinga. Covers event class hierarchy, status/message access, origin types, stoppable events, authorization, manifest wiring, and common pitfalls.

2026-06-27
system-inspect
Desarrolladores de software

How to query the Zolinga system's runtime state — merged manifest cache, API service stubs, configuration layers, and log files — using jq, grep, tail, and PHP.

2026-06-27
system-serving-non-html-content
Desarrolladores de software

Use when serving JSON, plain text, or other non-HTML content from a URL path that goes through the Zolinga content pipeline (public/index.php). Covers the PreflightEvent + ContentEvent two-listener pattern for switching MIME type and generating the response body.

2026-06-27
system-debug-database
Arquitectos de bases de datos

Use when you need to inspect database schema, list tables, view table structure, or run read-only SELECT queries for debugging purposes using the mysql CLI.

2026-05-23
system-create-skill
Desarrolladores de software

Use when creating, updating, or consolidating Agent Skills in this repository, including canonical placement, naming, and AGENTS.md alignment.

2026-05-21
system-install-scripts
Desarrolladores de software

Use when creating or modifying module installation scripts, update migration scripts, or initial file assets (dist/). Covers the install-vs-update lifecycle, naming, ordering, and the rule that install scripts must stay complete while update scripts must only be added.

2026-05-21
system-release
Desarrolladores de software

Guidance preparing a release of the system core or any module, including updating the changelog and version number.

2026-05-13
system-coding-standards
Desarrolladores de software

Use when creating or modifying code in Zolinga modules, especially for following established coding standards and best practices.

2026-05-09
system-i18n-coding
Desarrolladores de software

Use when writing localizable PHP code in Zolinga modules — dgettext/dngettext usage, domain naming, and context separators.

2026-05-08
system-module-development
Desarrolladores de software

Use when creating or updating Zolinga modules, wiring services/events in zolinga.json, handling config access, and following core project structure conventions.

2026-05-07
system-run-and-test
Analistas de garantía de calidad de software y probadores

Use when running Zolinga locally, triggering CLI-origin events, evaluating scripts, and finding the correct run/test command workflow.

2026-05-07
zolinga-setup
Desarrolladores de software

Use when setting up a basic Zolinga installation, checking prerequisites, fixing writable-path problems, configuring the local URL, and starting the framework for the first time.

2026-05-05
system-concurrency
Desarrolladores de software

Use when implementing inter-process locking or concurrency control in Zolinga modules. Covers the registry-based MySQL lock API.

2026-04-29
system-changelog
Desarrolladores de software

Use when creating or updating CHANGELOG.md files in Zolinga modules. Covers Keep a Changelog format, SemVer versioning, and the rule that every zolinga.json version bump must be accompanied by a CHANGELOG.md entry.

2026-04-29
system-authoring-manifest
Desarrolladores de software

Use when creating or editing module zolinga.json manifests, including listen/emit/autoload/config/webComponents/dependencies conventions and validation-oriented authoring.

2026-04-29
system-database-schema-updates
Arquitectos de bases de datos

Use when creating or modifying database schema in Zolinga modules, including install SQL and update migration scripts with naming conventions.

2026-04-29
system-reuse-first
Desarrolladores de software

Use before implementing any new feature — check existing services, events, content tags, and installable modules first. Avoid duplicating functionality that already exists in the system.

2026-04-29
system-web-components
Desarrolladores web

Use when creating or modifying Zolinga web components in install/dist, registering them through module zolinga.json, and documenting them correctly.

2026-04-29
system-web-root-overlay
Desarrolladores web

Use when placing static files (favicon, robots, verification files, etc.) into the virtual web-root overlay so they are served from root URLs without modifying public/.

2026-04-29
system-content-tags
Desarrolladores web

Use when implementing CMS content tag handlers (cms:content:tagName), including listener contracts, DOM manipulation rules, and required wiki docs.

2026-04-28
system-security-practices
Analistas de seguridad de la información

Use when implementing sensitive actions or reviewing Zolinga code for authorization gaps, unsafe request handling, and common security mistakes.

2026-04-28
example-skill
Desarrolladores de software

Use when: working with this module. Replace this description with specific trigger phrases describing what the skill helps accomplish and when to invoke it.

2026-04-11
system-custom-api-endpoints
Desarrolladores de software

Use when creating module-specific API endpoints in install/dist and wiring them to load the Zolinga system correctly.

2026-04-11