Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

shillinq

shillinq에는 ConductionNL에서 수집한 skills 69개가 있으며, 저장소 수준 직업 범위와 사이트 내 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
이 저장소에서 수집된 skills 69개 중 상위 40개를 표시합니다.