markus-global/markus - Open Source PR Review Scorecard

The best AI workforce platform, to build AI teams that actually deliver.

C-Rank Grade: B (Solid) - 66/100

External PR Merge Rate: 84%

Response Time: 2d

First Timer Success: 100%

Frequently Asked Questions

Is markus-global/markus welcoming to first-time open-source contributors?

markus-global/markus has a recorded first-timer success rate of 100.0%. Repositories ranked B typically provide actionable feedback during code reviews and actively nurture new community contributors.

How fast can I expect code review feedback on my pull request?

Maintainers in markus-global/markus respond to incoming external pull requests in approximately 50.8 hours on average. Keeping PRs focused on single tasks and ensuring tests pass helps maintainers review faster.

What does the 66.2 C-Rank™ score (B Tier) represent?

The C-Rank™ system evaluates GitHub projects on a 0–100 scale using real data: PR merge rates, review turnaround time, active maintainer presence, and first-time contributor success. A score of 66.2 places markus-global/markus in the B tier.

What is the external contributor pull request merge rate for markus-global/markus?

The external contributor pull request merge rate for markus-global/markus is 83.8%, based on public PR activity from non-core contributors.

Are there Good First Issues available in markus-global/markus?

markus-global/markus currently has 8 active issue(s) tagged with beginner-friendly labels like "good first issue", "beginner", or "up-for-grabs".

markus-global
markus-global/markusBSolid155
GitHub
Back to Explorer
markus-global

markus-global/markus

155
BSolid(66/100)TypeScript

The best AI workforce platform, to build AI teams that actually deliver.

Compare
Jump to:
Response Velocity
2 days+
Standard maintainer review cycle

Average Response Latency

Tracks hours until a maintainer leaves a review, comment, or PR response.

Merge Efficiency
83.8%
High acceptance rate for external PRs

External Acceptance Rate

Percentage of community pull requests successfully merged into main.

First-Timer Success
100.0%
Strong first-timer PR acceptance rate

First PR Conversion

Rate at which developers submitting their first repository PR succeed.

Active Maintainers
CRITICAL BUS FACTOR
Single maintainer
No active GitHub maintainers found (may review internally on Gerrit or internal tools)
Diagnostic Health HUD
83.8%
Merge Gauge
100.0%
1st-Timer
Community Vibe64/100

Embed C-Rank Badge

Show contributors that your repository actively reviews and merges external pull requests.

GetMerged C-Rank badge for markus-global/markus
[![GetMerged C-Rank](https://getmerged.abhishekco.de/api/badge/markus-global/markus)](https://getmerged.abhishekco.de/markus-global/markus?utm_source=github&utm_medium=badge)

Active Good First Issues (5)

View on GitHub

Goal Add a benchmark harness so we can measure Markus performance across releases: time-to-first-response, task completion latency, throughput (tasks/hour), and cost per task. Proposal scripts/benchmark/ with a benchmark scenario definition (e.g., 'draft a product summary' and 'fix a lint error') Runs a headless Markus instance against a real LLM (configurable provider, default small/cheap model) Emits JSON results (timestamps, model, token usage, duration) + a summary table CI optional: a monthly scheduled workflow posting results to an issue Reference files packages/cli/src/commands/start.ts (how the server boots) packages/core agent execution (task lifecycle timing hooks) vitest.config.ts (test setup patterns) Acceptance criteria Reproducible: same command, same inputs, documented env (model, temperature, cache) JSON output schema documented in scripts/benchmark/README.md Fails fast with clear messages when LLM keys are missing pnpm test / typecheck / lint pass Size: L · Skil

📅 Opened Aug 16, 2026💬 0 comments
Quality: 50/100Contribute

Goal Markus ships 25 role templates (templates/roles/): researcher, developer, reviewer, ops, finance, HR, SRE... Add a role we don't yet have, following the same structure. Candidate roles (pick one or propose your own with a clear job description) security-auditor (review code/arch for vulnerabilities) data-analyst (SQL/reporting agent) seo-specialist (web visibility) sales-engineer (demo + technical sales) localization-manager (i18n coordination) How Study templates/roles/sre/ROLE.md and templates/roles/secretary/ROLE.md — note the structure: Identity & Expertise, Core Responsibilities, Workflow, Guardrails, metrics Create templates/roles/NEW-ROLE/ROLE.md with: Identity section (who the agent is, core expertise) Core Responsibilities (tables of duties, triggers, outputs) Workflow steps Guardrails / escalation rules Concrete success metrics Add the role to the README package table if roles are listed there Validate: the role directory is discoverable by the agent system (see

📅 Opened Aug 16, 2026💬 0 comments
Quality: 50/100Contribute

Goal Windows users currently must install via npm or the Electron desktop package. Add a PowerShell installer (iwr -UseBasicParsing ... | iex) that mirrors scripts/install.sh: detect architecture, download the right binary bundle, verify checksum, and print next steps. Reference files scripts/install.sh (existing bash installer — mirror its logic) scripts/build-binary.sh (what artifacts exist for Windows) markus.global/install.sh endpoint (where the script is served) Acceptance criteria install.ps1 works on PowerShell 5.1+ and 7+ (x64 + arm64) Downloads and verifies checksum, installs to %LOCALAPPDATA%\Markus (or similar), adds to PATH Documented in README Quick Start (Windows line) No secrets; respects standard security (RemoteSigned / execution policy guidance) Size: M · Skill needed: PowerShell, release engineering · Comment before starting to coordinate with release automation.

📅 Opened Aug 16, 2026💬 0 comments
Quality: 50/100Contribute

Goal Extend markus skill import to normalize more external skill formats. Current support: skills.sh / Claude Code, SkillHub / ClawHub, OpenClaw, SOUL.md, AgentScope, MCP servers (see docs/SKILL-ECOSYSTEM.md). Candidate formats (pick one or propose another with community traction) OpenAI GPTs / Actions Dify plugins Cursor Rules / .cursor/rules n8n workflow nodes AutoGPT / A2A agent definitions How Read docs/SKILL-ECOSYSTEM.md §1-2 (supported formats + field mapping) and the import pipeline in packages/core (search for skill import in packages/core/src/skills/ or similar) Add a detector + normalizer for one new format, mapping its fields to the Markus skill manifest Export support is a bonus: markus skill export --format NAME Reference files docs/SKILL-ECOSYSTEM.md packages/core skill import/export code (CLI: markus skill import/export) Acceptance criteria New format auto-detected by markus skill import Round-trip metadata preserved (name, description, tools, permissions) Unit t

📅 Opened Aug 16, 2026💬 1 comment
Quality: 50/100Contribute

Goal Add a Discord messaging adapter to packages/comms so teams can drive Markus from Discord. This also enables the planned Discord community channel. How Follow the existing adapter pattern — each adapter lives in packages/comms/src/NAME/ with adapter.ts + client.ts and is wired in packages/comms/src/router.ts: Study packages/comms/src/telegram/ (which is similar in shape) and packages/comms/src/slack/ Implement a minimal Discord client (discord.js or raw REST) supporting: receive messages, send messages, connect/disconnect Register the adapter in packages/comms/src/index.ts + router.ts Add unit tests mirroring packages/comms/test/telegram-adapter.test.ts Reference files packages/comms/src/telegram/, slack/, router.ts, index.ts packages/comms/test/telegram-adapter.test.ts Acceptance criteria discord.js (or equivalent) is a peerDependency, not bundled into core Adapter connects, receives, and sends with graceful error handling (token invalid, network down) Unit tests pass; pnpm

📅 Opened Aug 16, 2026💬 0 comments
Quality: 50/100Contribute
Looking for more TypeScript beginner tasks?Explore TypeScript GFI

Contributor Community Vibe Feedback

Rate what actually matters after opening a pull request here.

Have you contributed to this repo?

Rate your first-hand PR experience (review speed, maintainer responsiveness, and onboarding ease) to help other contributors.

3 ratings required
Maintainer helpfulness
Review speed
Beginner friendliness

Contributor Compatibility & Review Speed Analysis for markus-global/markus

When evaluating whether to contribute to markus-global/markus, response velocity and maintainer engagement are crucial. GetMerged continuously tracks pull request trajectories, first-comment latency, and code review rounds to help developers avoid submitting pull requests to backlogged repositories.

Currently, maintainers of markus-global/markus acknowledge new external contributions in approximately 2 days+. Out of all submitted pull requests from non-core authors in the last 180-day window, 83.8% were successfully merged into the primary branch.

Frequently Asked Questions - Contributing to markus-global/markus

01

Is markus-global/markus welcoming to first-time open-source contributors?

markus-global/markus has a recorded first-timer success rate of 100.0%. Repositories ranked Solid typically provide actionable feedback during code reviews and actively nurture new community contributors.

02

How fast can I expect code review feedback on my pull request?

The initial maintainer response time averages ~2 days+. Keeping PRs scoped to single concerns and ensuring CI checks succeed will optimize review turnaround.

03

What does the 66.2 C-Rank™ score represent?

The C-Rank™ index scores repositories on a 0 to 100 scale using an objective formula: external PR merge rates, initial response speed, active maintainer count, and first-time contributor retention. A score of 66.2 places markus-global/markus in the Solid tier.

04

What is the external contributor pull request merge rate for markus-global/markus?

The external pull request merge rate is 83.8%. GetMerged isolates non-core community contributions so external developers get an accurate benchmark of PR acceptance probability.

05

Are there beginner Good First Issues open in markus-global/markus?

Yes, markus-global/markus currently has 8 active issue(s) tagged with beginner-friendly labels. You can inspect these directly from the repository issues tab.

GetMerged C-Rank™ Indexing Standard

All metrics displayed for markus-global/markus are automatically retrieved via the public GitHub API and recalculated daily. Insider pull requests submitted by repository owners or organization members are excluded from merge rate calculations to preserve objective external contributor statistics.