npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@nahisaho/katashiro-orchestrator

v2.7.5

Published

Task decomposition, planning, and multi-agent orchestration for KATASHIRO

Downloads

4,530

Readme

@nahisaho/katashiro-orchestrator

Task decomposition, planning, and multi-agent orchestration for KATASHIRO

Features

  • Task Decomposition (REQ-009): Automatically decompose complex tasks into subtasks with DAG-based dependency management
  • Action-Observation Pattern (REQ-010): Type-safe tool system with risk assessment and approval workflow
  • Multi-Agent Orchestration (REQ-006): Spawn independent sub-agents with isolated contexts

Installation

npm install @nahisaho/katashiro-orchestrator

Quick Start

Task Decomposition

import { TaskDecomposer } from '@nahisaho/katashiro-orchestrator';

const decomposer = new TaskDecomposer({
  maxSubTasks: 50,
  allowParallel: true,
});

// Decompose a complex task
const result = await decomposer.decompose('生成AIの企業活用について調べてレポートにまとめて');

if (result.ok) {
  const plan = result.value;
  console.log('Execution Plan:', plan.name);
  console.log('Subtasks:', plan.tasks.length);
  console.log('Parallel Groups:', plan.parallelGroups.length);
  console.log('Estimated Duration:', plan.estimatedTotalDuration, 'seconds');
}

Tool Registry

import { ToolRegistry, type ToolDefinition } from '@nahisaho/katashiro-orchestrator';

const registry = new ToolRegistry({
  enableRiskAssessment: true,
  approvalRequiredLevel: 'critical',
});

// Register a tool
const searchTool: ToolDefinition<{ query: string }, { results: string[] }> = {
  name: 'web_search',
  description: 'Search the web for information',
  category: 'network',
  paramsSchema: {
    type: 'object',
    properties: {
      query: { type: 'string' },
    },
    required: ['query'],
  },
  resultSchema: {
    type: 'object',
    properties: {
      results: { type: 'array', items: { type: 'string' } },
    },
  },
  defaultRiskLevel: 'low',
  defaultTimeout: 30,
  execute: async (params, context) => {
    context.logger.info('Searching for:', params.query);
    // Implementation...
    return { results: ['result1', 'result2'] };
  },
};

registry.register(searchTool);

// Create and execute an action
const actionResult = registry.createAction({
  toolName: 'web_search',
  params: { query: 'KATASHIRO' },
  requestedBy: 'agent-001',
});

if (actionResult.ok) {
  const observation = await registry.execute(actionResult.value);
  console.log('Observation:', observation);
}

API Reference

TaskDecomposer

Constructor

new TaskDecomposer(config?: Partial<DecompositionConfig>)

| Config Option | Type | Default | Description | |--------------|------|---------|-------------| | maxSubTasks | number | 50 | Maximum number of subtasks | | minTaskGranularity | number | 5 | Minimum task duration (seconds) | | maxDependencyDepth | number | 10 | Maximum dependency depth | | allowParallel | boolean | true | Allow parallel execution |

Methods

  • decompose(task: string, context?: Record<string, unknown>): Promise<Result<ExecutionPlan, DecompositionError>>
  • registerStrategy(strategy: DecompositionStrategy): void

ToolRegistry

Constructor

new ToolRegistry(config?: Partial<ToolRegistryConfig>)

| Config Option | Type | Default | Description | |--------------|------|---------|-------------| | allowUnregistered | boolean | false | Allow unregistered tools | | defaultTimeout | number | 30 | Default timeout (seconds) | | enforceSchemaValidation | boolean | true | Enforce schema validation | | enableRiskAssessment | boolean | true | Enable risk assessment | | approvalRequiredLevel | RiskLevel | 'critical' | Risk level requiring approval |

Methods

  • register<TParams, TResult>(tool: ToolDefinition<TParams, TResult>): Result<void, ToolRegistryError>
  • createAction<TParams>(options: CreateActionOptions<TParams>): Result<Action<TParams>, ToolRegistryError>
  • execute<TParams, TResult>(action: Action<TParams>, signal?: AbortSignal): Promise<Result<Observation<TResult>, ToolRegistryError>>
  • assessRisk(action: Action): SecurityAssessment

EARS Requirements Coverage

This package implements the following EARS requirements:

| Requirement | Pattern | Implementation | |------------|---------|----------------| | REQ-009 | Event-Driven | TaskDecomposer.decompose() | | REQ-009 | Ubiquitous | ExecutionPlan DAG structure | | REQ-010 | Event-Driven | ToolRegistry.execute() | | REQ-010 | Unwanted | Risk assessment and approval | | REQ-006 | State-Driven | AgentContext isolation |

License

MIT