Skip to main content
Manusで任意のスキルを実行
ワンクリックで
GitHub リポジトリ

shillinq

shillinq には ConductionNL から収集した 69 個の skills があり、リポジトリ単位の職業カバレッジとサイト内 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 件を表示しています。