Skip to main content
Glama

CTX: Context as Code (CaC) tool

by context-hub
MIT License
235
  • Apple
  • Linux
GithubSource.php3.59 kB
<?php declare(strict_types=1); namespace Butschster\ContextGenerator\Source\Github; use Butschster\ContextGenerator\Modifier\Modifier; use Butschster\ContextGenerator\Source\Fetcher\FilterableSourceInterface; use Butschster\ContextGenerator\Source\SourceWithModifiers; /** * Source for GitHub repositories */ final class GithubSource extends SourceWithModifiers implements FilterableSourceInterface { /** * @param string $repository GitHub repository in format "owner/repo" * @param string $branch Branch or tag to fetch from (default: main) * @param string $description Human-readable description * @param string|array<string> $filePattern Pattern(s) to match files * @param array<string> $notPath Patterns to exclude files * @param bool $showTreeView Whether to show directory tree * @param string|null $githubToken GitHub API token for private repositories * @param array<Modifier> $modifiers Identifiers for content modifiers to apply * @param array<non-empty-string> $tags */ public function __construct( public readonly string $repository, public readonly string|array $sourcePaths, public readonly string $branch = 'main', string $description = '', public readonly string|array $filePattern = '*.*', public readonly array $notPath = [], public readonly string|array|null $path = null, public readonly string|array|null $contains = null, public readonly string|array|null $notContains = null, public readonly bool $showTreeView = true, public readonly ?string $githubToken = null, array $modifiers = [], array $tags = [], ) { parent::__construct(description: $description, tags: $tags, modifiers: $modifiers); } public function name(): string|array|null { return $this->filePattern; } public function path(): string|array|null { return $this->path; } public function notPath(): array|null { return $this->notPath; } public function contains(): string|array|null { return $this->contains; } public function notContains(): string|array|null { return $this->notContains; } public function size(): string|array|null { return null; } public function date(): string|array|null { return null; } public function in(): array|null { return (array) $this->sourcePaths; } public function files(): array|null { return null; // GitHub source treats all sourcePaths as directories } public function ignoreUnreadableDirs(): bool { return false; // Not applicable for GitHub sources } public function maxFiles(): int { return 0; //todo Add support for max files } #[\Override] public function jsonSerialize(): array { return \array_filter([ 'type' => 'github', ...parent::jsonSerialize(), 'repository' => $this->repository, 'sourcePaths' => $this->sourcePaths, 'branch' => $this->branch, 'filePattern' => $this->filePattern, 'notPath' => $this->notPath, 'path' => $this->path, 'contains' => $this->contains, 'notContains' => $this->notContains, 'showTreeView' => $this->showTreeView, 'githubToken' => $this->githubToken, ], static fn($value) => $value !== null && (!\is_array($value) || !empty($value))); } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/context-hub/generator'

If you have feedback or need assistance with the MCP directory API, please join our Discord server