Back to list
pluginagentmarketplace

fullstack-testing

by pluginagentmarketplace

Fullstack Development Plugin

1🍴 0📅 Jan 5, 2026

SKILL.md


name: fullstack-testing description: Fullstack testing - unit, integration, E2E, coverage sasmp_version: "1.3.0" bonded_agent: 06-testing-strategy bond_type: PRIMARY_BOND

Skill Configuration

atomic: true single_responsibility: test_implementation

Parameter Schema

parameters: type: object required: [action] properties: action: type: string enum: [write_unit_test, write_integration_test, write_e2e_test, analyze_coverage] description: The specific testing action to perform test_framework: type: string enum: [vitest, jest, pytest, playwright, cypress] default: vitest target: type: string description: The file or component to test coverage_threshold: type: number minimum: 0 maximum: 100 default: 80

Return Schema

returns: type: object properties: success: { type: boolean } test_code: { type: string } files: { type: array, items: { type: object } } coverage: { type: object }

Retry Configuration

retry: max_attempts: 3 backoff: exponential initial_delay_ms: 1000 jitter: true

Observability

logging: level: INFO events: [test_written, coverage_analyzed, flaky_detected] metrics: [test_count, coverage_percentage, execution_time]

Fullstack Testing Skill

Atomic skill for testing including unit tests, integration tests, and E2E tests.

Responsibility

Single Purpose: Write and manage tests for fullstack applications

Actions

write_unit_test

Write unit tests for a component or function.

// Input
{
  action: "write_unit_test",
  test_framework: "vitest",
  target: "src/services/user.service.ts"
}

// Output
{
  success: true,
  test_code: "describe('UserService', () => {...})",
  files: [
    { path: "src/services/user.service.test.ts", content: "..." }
  ],
  coverage: { statements: 85, branches: 80, functions: 90, lines: 85 }
}

write_integration_test

Write integration tests for API endpoints.

write_e2e_test

Write E2E tests for user flows.

analyze_coverage

Analyze test coverage and identify gaps.

Validation Rules

function validateParams(params: SkillParams): ValidationResult {
  if (!params.action) {
    return { valid: false, error: "action is required" };
  }

  if (params.action !== 'analyze_coverage' && !params.target) {
    return { valid: false, error: "target required for test writing" };
  }

  return { valid: true };
}

Error Handling

Error CodeDescriptionRecovery
TARGET_NOT_FOUNDTest target not foundVerify file path
FRAMEWORK_UNSUPPORTEDTest framework not supportedCheck supported frameworks
COVERAGE_BELOW_THRESHOLDCoverage below targetAdd more tests
FLAKY_TEST_DETECTEDTest is non-deterministicFix race condition

Logging Hooks

{
  "on_invoke": "log.info('fullstack-testing invoked', { action, target })",
  "on_success": "log.info('Test created', { files, coverage })",
  "on_error": "log.error('Testing skill failed', { error })"
}

Unit Test Template

import { describe, it, expect } from 'vitest';
import { fullstackTesting } from './fullstack-testing';

describe('fullstack-testing skill', () => {
  describe('write_unit_test', () => {
    it('should create test file with proper structure', async () => {
      const result = await fullstackTesting({
        action: 'write_unit_test',
        test_framework: 'vitest',
        target: 'src/services/user.service.ts'
      });

      expect(result.success).toBe(true);
      expect(result.test_code).toContain('describe');
      expect(result.test_code).toContain('it(');
    });

    it('should include arrange-act-assert pattern', async () => {
      const result = await fullstackTesting({
        action: 'write_unit_test',
        target: 'src/utils/format.ts'
      });

      expect(result.test_code).toMatch(/Arrange|Act|Assert/);
    });
  });

  describe('analyze_coverage', () => {
    it('should identify untested code paths', async () => {
      const result = await fullstackTesting({
        action: 'analyze_coverage',
        coverage_threshold: 80
      });

      expect(result.success).toBe(true);
      expect(result.coverage).toBeDefined();
    });
  });
});

Integration

  • Bonded Agent: 06-testing-strategy
  • Upstream Skills: frontend-development, backend-development
  • Downstream Skills: devops-fullstack

Version History

VersionDateChanges
1.0.02024-01Initial release
2.0.02025-01Production-grade upgrade with Playwright patterns

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon