daemon-blockint-tech/agentic-enteprises-skill

senior-fullstack-developer

Guides senior full-stack delivery across TypeScript/React/Next.js frontends, Node or Python APIs, relational databases, authentication, testing, performance, and pragmatic system design for product features. Use when implementing end-to-end features, designing REST/GraphQL contracts, refactoring UI and backend, debugging production issues in app code, or reviewing PRs for maintainability—not for standard full-stack IC delivery without senior scope (fullstack-software-engineer), CI/CD platform w…

First seen May 20, 2026

Installation

$ npx skills add daemon-blockint-tech/agentic-enteprises-skill --skill senior-fullstack-developer

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from daemon-blockint-tech/agentic-enteprises-skill · top by installs.

npx skills add daemon-blockint-tech/agentic-enteprises-skill

Browse all from daemon-blockint-tech/agentic-enteprises-skill

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 8
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,034 B
  • docs SUMMARY.md 678 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 33 installs

SKILL.md

Senior Fullstack Developer

When to Use

  • Senior-owned vertical features with higher design bar
  • PR review for authz, data layer, and frontend architecture
  • Production debugging across app layers with mentorship-level guidance

When NOT to Use

  • Routine full-stack feature work at standard IC bar → fullstack-software-engineer
  • Cross-team RFCs and service boundaries → senior-software-engineer
  • Infrastructure or pipelines → infrastructure-engineer, devops

Related skills

Need Skill
General full-stack IC delivery fullstack-software-engineer
Pipelines, deploy, SLOs devops
SAST, dependency, pipeline security devsecops
Requirements and BRDs business-analyst
RAG, agents, LLM APIs ai-engineer
Docs and API reference publishing tech-writer-researcher
RFCs, service design, senior code review senior-software-engineer
Front-end-only senior work senior-frontend-software-engineer
Web platform security and auth patterns web-application-developer

Core Workflows

1. Feature delivery (vertical slice)

  1. Clarify acceptance criteria and non-goals
  2. Sketch API contract + UI states (loading, empty, error)
  3. Implement backend with validation and authz checks first
  4. Implement UI against contract; use typed client
  5. Add tests: unit for logic, integration for API, e2e for critical path
  6. Instrument logs/metrics for new endpoints
  7. Ship behind flag if risky; document rollout and rollback

See references/feature_delivery.md for slice checklist and PR template.

2. API and data layer design

Concern Default
Style REST with OpenAPI or tRPC for TS monoliths
Auth Session or JWT; validate on every mutating route
Validation Schema at boundary (Zod, Pydantic)
DB Migrations versioned; indexes for query paths
Errors Stable error codes; no stack traces to clients

See references/apidatapatterns.md for pagination, idempotency, and transaction patterns.

3. Frontend architecture

  • Prefer server components where data is read-heavy (Next.js App Router)
  • Colocate state: server for fetch, client only for interaction
  • Accessible components (labels, focus, contrast)
  • Avoid premature abstraction; extract after second use

See references/frontend_patterns.md for forms, caching, and performance.

4. Quality and review

PR review focus: correctness, authz, input validation, N+1 queries, error paths, test coverage on changed lines.

Before merge: lint, typecheck, tests green; no secrets; migration plan if schema changed.

See references/testing_quality.md for test pyramid and flaky test handling.

5. Production debugging

  1. Reproduce with correlation ID
  2. Check recent deploys and feature flags
  3. Trace logs → metrics → DB slow queries
  4. Fix forward or rollback; add regression test

See references/debugging_ops.md for common failure modes.

When to load references

  • End-to-end feature flowreferences/feature_delivery.md
  • APIs and databasesreferences/apidatapatterns.md
  • React/Next UIreferences/frontend_patterns.md
  • Testing and reviewreferences/testing_quality.md
  • Prod debuggingreferences/debugging_ops.md