Skip to main content
Exécutez n'importe quel Skill dans Manus
en un clic
AZANIR
Profil créateur GitHub

AZANIR

Vue par dépôt de 116 skills collectés dans 4 dépôts GitHub.

skills collectés
116
dépôts
4
mis à jour
2026-06-04
explorateur de dépôts

Dépôts et skills représentatifs

qa-orchestrator
Analystes en assurance qualité des logiciels et testeurs

Master skill coordinating all QA skills through pipeline modes (full-cycle, docs-only, testcases-only, write-tests, report), formalized handoff chains, scheduler rules, and framework/language selection based on project context.

2026-03-23
qa-project-memory
Analystes en assurance qualité des logiciels et testeurs

QA project memory with auto-update. Structured log of bugs, decisions, tests, regressions, environments. Automatically updated after every QA task. Archive system with searchable index for large projects. Trigger phrases (EN): "initialize memory", "init qa memory", "find known bug", "search memory", "show what was done", "check regressions", "memory status", "archive memory", "log a bug", "add decision", "memory summary", "what bugs do we know", "update memory", "show test log". Trigger phrases (UA): "ініціалізувати пам'ять", "знайти відомий баг", "пошук у пам'яті", "показати що було зроблено", "перевірити регресії", "статус пам'яті", "архівувати пам'ять", "залогувати баг", "додати рішення", "зведення пам'яті", "які баги відомі", "оновити пам'ять", "показати лог тестів", "що ми вирішили про", "які тестові середовища є".

2026-03-23
qa-playswag
Analystes en assurance qualité des logiciels et testeurs

Analyze OpenAPI/Swagger spec (JSON or YAML) against existing test files and generate an HTML coverage report with QA automation tasks. Use when user provides an OpenAPI spec file and wants to know test coverage status.

2026-03-21
qa-accessibility-test-writer
Analystes en assurance qualité des logiciels et testeurs

Generate accessibility tests for WCAG 2.2 compliance using axe-core, Pa11y, and Lighthouse with automated checks for ARIA patterns, keyboard navigation, color contrast, and screen reader support.

2026-03-08
qa-api-contract-curator
Analystes en assurance qualité des logiciels et testeurs

Manage and formalize API contracts from existing endpoints, swagger/JSON, network traffic, or developer interviews into OpenAPI specifications.

2026-03-08
qa-browser-data-collector
Analystes en assurance qualité des logiciels et testeurs

Autonomously explore live web applications using Playwright MCP to collect page structure, form fields, validation rules, API endpoints, and user flows for test case generation.

2026-03-08
qa-bug-ticket-creator
Analystes en assurance qualité des logiciels et testeurs

Generate structured bug reports from test failures with expected/actual results, reproduction steps, evidence, severity/priority, and auto-create GitHub Issues via GitHub MCP with duplicate detection.

2026-03-08
qa-changelog-analyzer
Analystes en assurance qualité des logiciels et testeurs

Analyze git diff and commit history to recommend which tests to add, update, or run based on code changes.

2026-03-08
Affichage des 8 principaux skills collectés sur 58 dans ce dépôt.
analytics-digest
Développeurs de logiciels

Pull weekly traffic data from Plausible Analytics for artstroy.net, produce a structured digest with top articles, category breakdown, referrer mix, and trend signals. Posted to the root company issue weekly.

2026-05-25
cross-post-syndication
Développeurs de logiciels

Cross-post published ArtStroy articles to dev.to and Hashnode with correct canonical URLs, metadata mapping, and formatting. Handles API integration for automated posting and creates manual-assist drafts for platforms without API access.

2026-05-25
dependency-audit
Analystes en assurance qualité des logiciels et testeurs

Scan ArtStroy npm/bun dependencies for known vulnerabilities. Ranks CVEs by CVSS severity, creates vuln-fix issues with deadlines, and verifies fixes post-deploy. Run monthly and on any new dependency addition.

2026-05-25
deploy-pipeline
Développeurs de logiciels

Manage and verify the ArtStroy CI/CD pipeline. Covers the GitHub Actions deploy workflow, SSH-based Hetzner deployment, Docker Compose orchestration, and post-deploy health checks. Used by DevOps Engineer for deploy operations and pipeline maintenance.

2026-05-25
infra-as-code
Développeurs de logiciels

Manage ArtStroy's Docker Compose configuration, Hetzner server provisioning, environment variable management, and infrastructure-as-code practices. Used by DevOps Engineer for all infrastructure changes.

2026-05-25
newsletter-build
Développeurs de logiciels

Compile new ArtStroy articles into a Markdown newsletter draft ready for Buttondown. Runs weekly; sends draft to human for final review before dispatch.

2026-05-25
secrets-management
Développeurs de logiciels

Manage secrets rotation, GitHub Actions secret updates, and environment variable injection for ArtStroy. Ensures secrets never appear in logs, git history, or plaintext files. Used by DevOps Engineer and Security Auditor.

2026-05-25
security-headers-check
Analystes en sécurité de l'information

Verify artstroy.net HTTP security headers against OWASP best practices. Checks CSP, HSTS, X-Frame-Options, X-Content-Type-Options, Permissions-Policy, and Referrer-Policy. Creates issues for missing or misconfigured headers.

2026-05-25
Affichage des 8 principaux skills collectés sur 39 dans ce dépôt.
code-graph
Développeurs de logiciels

Optional code-navigation aid for large or unfamiliar codebases. Use during the plan or implement phases to map module dependencies, find where a symbol is defined and used, and orient before making changes. This is a navigation helper only — it is NOT the memory layer. Skip for small projects.

2026-06-01
memory-manager
Développeurs de logiciels

Persistent memory layer across sessions. Use to recall prior context at the start of work, to store checkpoints at phase boundaries, and to answer "what did we decide / do before" questions. Backed by the agentmemory server (local SQLite + vector embeddings) on port 3111, with an MCP-only fallback. Every phase skill calls this to survive /clear and compaction boundaries.

2026-06-01
sdlc-design
Concepteurs web et d'interfaces numériques

Phase 4 of the SDLC, used ONLY for user-facing features. Use this to produce UI/UX design documentation and a persistent design system before implementation. Triggers when tasks.md exists and the spec marked a UI surface. Coordinates with the ui-ux-pro-max skill to generate design-system/MASTER.md and per-page specs. Skip entirely for CLI tools, libraries, or backend-only work.

2026-06-01
sdlc-implement
Développeurs de logiciels

Phase 5 of the SDLC. Use this to write code that satisfies the tasks, strictly test-first (TDD). Triggers when tasks.md exists and design is done or not needed. Implements one task at a time, writing a failing test before code, then making it pass, then refactoring. Persists progress to memory after each task so work survives session boundaries.

2026-06-01
sdlc-orchestrator
Autres occupations informatiques

Master coordinator for the full software development lifecycle. Use this when starting a new feature or project, when the user is unsure which phase to run, when resuming work after a break, or to establish/edit the project constitution. Routes to specify, plan, tasks, design, implement, review, and ship phases in the correct order and enforces that no phase is skipped. ALWAYS consider this skill first at the start of any development work.

2026-06-01
sdlc-plan
Développeurs de logiciels

Phase 2 of the SDLC. Use this to decide HOW a specified feature will be built — architecture, tech choices, data model, API contracts, and trade-offs. Triggers after a spec exists and the user wants a technical plan or design decisions. Produces specs/<feature>/plan.md plus Architecture Decision Records (ADRs). Must read spec.md and memory/constitution.md and respect their constraints.

2026-06-01
sdlc-review
Analystes en assurance qualité des logiciels et testeurs

Phase 6 of the SDLC. Use this to verify the implementation against the spec's acceptance criteria and the project constitution before shipping. Triggers when implementation is complete. Produces specs/<feature>/review.md — a filled acceptance checklist with pass/fail per criterion and required fixes. Does not ship; gates whether ship is allowed.

2026-06-01
sdlc-ship
Développeurs de logiciels

Phase 7 of the SDLC, the final phase. Use this to prepare a release after review has passed. Triggers when review.md shows all criteria passing. Runs the mandatory security-scan gate, generates release notes in Ukrainian, and prepares (but does not auto-execute) the commit/tag/PR. A failing security scan blocks the ship and is surfaced to the user.

2026-06-01
Affichage des 8 principaux skills collectés sur 14 dans ce dépôt.
conventional-commits
Développeurs de logiciels

Manage git branches and create Conventional Commits for the Gapta project. Use this skill when committing changes, creating branches, preparing PRs, or when the user says "commit", "create branch", "prepare PR", or "push changes".

2026-06-04
gapta-article-writer
Rédacteurs techniques

Write complete MDX blog articles for gapta.com.ua (computerized embroidery niche) in Ukrainian, with correct frontmatter, SEO, and optional React components. Use when creating new posts for the Gapta blog once content collections exist, or when drafting article structure and copy.

2026-06-04
project-memory
Développeurs de logiciels

Set up and maintain a structured project memory system in docs/project_notes/ that tracks bugs with solutions, architectural decisions, key project facts, and work history. Use this skill when asked to "set up project memory", "track our decisions", "log a bug fix", "update project memory", or "initialize memory system". Configures both CLAUDE.md and AGENTS.md to maintain memory awareness across different AI coding tools.

2026-06-04
seo-geo
Analystes en études de marché et spécialistes en marketing

SEO & GEO (Generative Engine Optimization) for websites. Analyze keywords, generate schema markup, optimize for AI search engines (ChatGPT, Perplexity, Gemini, Copilot, Claude) and traditional search (Google, Bing). Use when user wants to improve search visibility, search optimization, search ranking, AI visibility, ChatGPT ranking, Google AI Overview, indexing, JSON-LD, meta tags, or keyword research.

2026-06-04
human-articles
Rédacteurs techniques

Write technical articles, blog posts, and long-form content that reads like it was written by a human, not generated by AI. Use this skill when creating articles, tutorials, case studies, essays, or any written content where authenticity matters. Avoids common AI writing tells documented by Wikipedia and other sources.

2026-06-04
4 dépôts affichés sur 4
Tous les dépôts sont affichés