Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

shillinq

يحتوي shillinq على 69 من skills المجمعة من ConductionNL، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
69
Stars
1
محدث
2026-05-21
Forks
1
التغطية المهنية
7 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

clean-env
مديرو الشبكات وأنظمة الحاسوب

Reset the OpenRegister development environment (stop, remove volumes, restart, install apps)

2026-05-21
create-pr
مطوّرو البرمجيات

Create a Pull Request from the current branch — runs local checks, picks target branch, and opens the PR on GitHub

2026-05-21
feature-counsel
متخصصو إدارة المشاريع

Analyze a project's OpenSpec from 8 persona perspectives and suggest additional features

2026-05-21
hydra-gate-admin-router
مطوّرو البرمجيات

Detect admin settings Vue components registered in the vue-router. Admin settings are rendered by Nextcloud's settings framework via `AdminSettings.php`; adding their Vue components to the in-app router exposes them as publicly-accessible frontend routes, bypassing all server-side access checks. ADR-004 hard rule. Observed 2026-04-30 on doriath where `/settings → AdminRoot` was a route in `src/router/index.js` (commit c7c72e9).

2026-05-21
hydra-gate-composer-audit
مطوّرو البرمجيات

Run `composer audit` to check composer.lock dependencies for known CVEs. Invoked by the builder before push and the reviewer's mandatory block. Mirrors the orchestrator's `composer-audit` quality gate.

2026-05-21
hydra-gate-forbidden-patterns
مطوّرو البرمجيات

Scan lib/ for forbidden debug helpers (var_dump / die / error_log / print_r / dd / dump) that should not ship. Invoked by the builder before push, by the reviewer as Mandatory Step 2, and by the fixer during a retry. Mirrors the orchestrator's `forbidden-patterns` quality gate.

2026-05-21
hydra-gate-initial-state
مطوّرو البرمجيات

Detect DOM data-attribute reads in `.vue`/`.js`/`.ts` files (e.g. `document.getElementById('x').dataset.version`) used to pull server-side data into the frontend. The Nextcloud-idiomatic pattern is `IInitialState::provideInitialState()` in PHP + `loadState()` from `@nextcloud/initial-state` in Vue. DOM data-attributes break on CSP-hardened instances and bypass the canonical pattern documented in ADR-004. Observed 2026-04-30 on doriath where `AdminRoot.vue` read `document.getElementById('doriath-settings').dataset.version`.

2026-05-21
hydra-gate-modal-isolation
مطوّرو البرمجيات

Detect `<NcModal>` or `<NcDialog>` markup written inline inside parent components. Every modal/dialog MUST live in its own `.vue` file under `src/modals/` (NcModal-based) or `src/dialogs/` (NcDialog-based) and be imported by the parent. Inline modals couple presentation to the parent's lifecycle, prevent reuse, and bloat the parent component. ADR-004 hard rule. Observed 2026-04-30 on doriath.

2026-05-21
hydra-gate-nc-input-labels
مطوّرو البرمجيات

Detect `<NcSelect>` usages without an `inputLabel` (or `ariaLabelCombobox`) prop. Manual `<label>` elements paired with NcSelect break the component's internal accessibility wiring (WCAG 2.1 AA Success Criteria 1.3.1 and 4.1.2); the built-in props are required for correct screen-reader association. ADR-004 hard rule. Observed 2026-04-30 on doriath.

2026-05-21
hydra-gate-no-admin-idor
مطوّرو البرمجيات

Detect controller methods with `#[NoAdminRequired]` / `@NoAdminRequired` that lack a per-object or admin authorization guard in the method body. Without a guard, any authenticated user can invoke the endpoint on arbitrary object IDs — classic IDOR (OWASP A01:2021 / ADR-005 Rule 3). Observed 2026-04-21 on decidesk#44 where 4 MinutesController methods shipped without guards.

2026-05-21
hydra-gate-orphan-auth
مطوّرو البرمجيات

Detect authorization/validation service methods that are defined but never called. Observed 2026-04-21 on decidesk#60 — `isTransitionAllowed()`, `requiresChairAuthorization()`, `validateQuorum()` were all implemented but never invoked from the state-change caller, leaving dead auth code while the pipeline reported green. A defined-but-unused auth method is identical to having no check at all (OWASP A01:2021).

2026-05-21
hydra-gate-route-auth
مطوّرو البرمجيات

Verify every controller method registered in appinfo/routes.php declares its auth posture via a Nextcloud attribute or docblock tag. Missing `#[PublicPage]` / `#[NoAdminRequired]` / `#[NoCSRFRequired]` / `#[AuthorizedAdminSetting(...)]` silently makes an endpoint unreachable — NC middleware rejects the request before the controller runs. Observed 2026-04-21 on decidesk#47.

2026-05-21
hydra-gate-semantic-auth
مطوّرو البرمجيات

Detect controller methods where the Nextcloud auth annotation does not match the method's actual authorization requirement. Observed 2026-04-23 on decidesk#44 where the builder satisfied gate-5 (route-auth) by adding `#[NoAdminRequired]` to SettingsController::load() even though the method body calls `requireAdmin()`. Gate-5 accepted any auth attribute; this gate catches the semantic mismatch.

2026-05-21
hydra-gate-spdx
مطوّرو البرمجيات

Enforce @license + @copyright PHPDoc tags on every PHP file under lib/. Invoked by the builder before push, by the reviewer as the first Mandatory Step, and by the fixer during a retry cycle. Mirrors the orchestrator's `spdx-headers` quality gate exactly.

2026-05-21
hydra-gate-stub-scan
مطوّرو البرمجيات

Detect stub code — "In a complete implementation" comments, empty `run()` bodies in BackgroundJob files, unused injected dependencies, hardcoded fetch stubs in Vue `fetch*()` methods. Invoked by the builder before push, the reviewer's mandatory block, and the fixer during retry. Mirrors the orchestrator's `stub-scan` quality gate.

2026-05-21
hydra-gate-unsafe-auth-resolver
مطوّرو البرمجيات

Detect `catch (\Throwable) { return null; }` patterns in service methods that resolve auth/authorization/permission/role services. The nullable return shape enables a silent-fail-open pattern where the caller treats "service unavailable" as "check skipped" (OWASP A01:2021 / CWE-863). Observed 2026-04-21 on decidesk#45 where `DecisionApprovalService::getAuthorizationService()` returned null on Throwable and the caller guarded the role check with `if ($auth !== null)`, letting any authed user advance decisions when the service was briefly unavailable.

2026-05-21
hydra-gates
مطوّرو البرمجيات

Run all thirteen Hydra mechanical quality gates (SPDX, forbidden-patterns, stub-scan, composer-audit, route-auth, orphan-auth, no-admin-idor, unsafe-auth-resolver, semantic-auth, initial-state, admin-router, nc-input-labels, modal-isolation) via the shared script and summarise the failures. Invoked by the builder's Rule 0b wrapper (mechanically, on every iteration) and by the reviewer / security reviewer's mandatory first step. Single source of truth lives in scripts/run-hydra-gates.sh.

2026-05-21
journeydoc-add-story
مطوّرو البرمجيات

Append one tutorial story to a journeydoc-bootstrapped Conduction app — drops a markdown page + a capture-spec test block + sidebar entry, all in one PR. See ADR-030.

2026-05-21
journeydoc-init
مطوّرو البرمجيات

Bootstrap journeydoc — capture-driven user documentation — into a Conduction app. Drops the 8-artifact scaffold (tutorials/, capture spec, Playwright project, Docusaurus config, domain wiring, screenshot output dir) and opens a PR. See ADR-030.

2026-05-21
journeydoc-instrument
مطوّرو البرمجيات

Add stable `data-testid` attributes to a Vue component so the journeydoc capture spec can target it reliably. Audits one file, proposes the additions, applies after confirmation, runs vitest. See ADR-030.

2026-05-21
local-run
مطوّرو البرمجيات

Run the full Hydra pipeline locally (builder → reviewer → security)

2026-05-21
opsx-annotate
مطوّرو البرمجيات

Apply Bucket 1 `@spec` tags from a coverage report — creates a ghost change and opens an annotation-only PR (Experimental)

2026-05-21
opsx-apply-loop
مطوّرو البرمجيات

Iteratively run apply→verify in a loop until verify passes, then auto-archive — runs per-app in Docker context

2026-05-21
opsx-apply
مطوّرو البرمجيات

Implement tasks from an OpenSpec change (Experimental)

2026-05-21
opsx-archive
مطوّرو البرمجيات

Archive a completed change in the experimental workflow

2026-05-21
opsx-bulk-archive
مطوّرو البرمجيات

Archive multiple completed changes at once

2026-05-21
opsx-continue
مطوّرو البرمجيات

Continue working on a change - create the next artifact (Experimental)

2026-05-21
opsx-coverage-scan
مطوّرو البرمجيات

Audit a legacy app for spec ↔ code coverage — produces a 6-bucket report before retrofit annotation (Experimental)

2026-05-21
opsx-explore
مطوّرو البرمجيات

Enter explore mode - think through ideas, investigate problems, clarify requirements

2026-05-21
opsx-ff
مطوّرو البرمجيات

Create a change and generate all artifacts needed for implementation in one go (Blocks Haiku)

2026-05-21
opsx-new
مطوّرو البرمجيات

Start a new change using the experimental artifact workflow (OPSX)

2026-05-21
opsx-onboard
مطوّرو البرمجيات

Guided onboarding - walk through a complete OpenSpec workflow cycle with narration

2026-05-21
opsx-pipeline
مطوّرو البرمجيات

Process multiple OpenSpec changes in parallel using subagents — full lifecycle from proposal to merged PR

2026-05-21
opsx-plan-to-issues
مطوّرو البرمجيات

Convert an OpenSpec change's tasks.md into a plan.json and create a GitHub Issue for progress tracking

2026-05-21
opsx-reverse-spec
مطوّرو البرمجيات

Reverse-engineer a spec from observed code — one Bucket 2 cluster per run, creates a ghost change with spec delta + tasks + annotations (Experimental)

2026-05-21
opsx-sync
مطوّرو البرمجيات

Sync delta specs from a change to main specs

2026-05-21
opsx-verify
محللو ضمان جودة البرمجيات والمختبرون

Verify implementation matches change artifacts before archiving

2026-05-21
persistence-audit
محللو أمن المعلومات

Audit a codebase or architecture for post-compromise persistence vectors — OAuth grants, service accounts, CI/CD secrets, IdP trust, audit trails, and endpoint persistence

2026-05-21
report-out
مطوّرو البرمجيات

Daily end-of-day report — scans local repos and the user's GitHub activity today, suggests committing/pushing uncommitted changes, creating PRs for orphan branches, and lifecycle actions on tracking issues (close, follow-up); ends with a copy-paste Dutch Slack report-out message

2026-05-21
review-pr
محللو ضمان جودة البرمجيات والمختبرون

Review one or more GitHub Pull Requests — detects re-reviews, asks strictness level (Quick/Standard/Thorough/Strict), posts 🔴/🟡/🟢 inline comments per finding, and submits APPROVE or REQUEST_CHANGES via the GitHub API. Accepts multiple PR URLs/numbers for parallel batch review.

2026-05-21
عرض أهم 40 من أصل 69 skills مجمعة في هذا المستودع.