- Change module from forge.lthn.ai/core/go to forge.lthn.ai/core/cli - Remove pkg/ directory (now served from core/go) - Add require + replace for forge.lthn.ai/core/go => ../go - Update go.work to include ../go workspace module - Fix all internal/cmd/* imports: pkg/ refs → forge.lthn.ai/core/go/pkg/ - Rename internal/cmd/sdk package to sdkcmd (avoids conflict with pkg/sdk) - Remove SDK library files from internal/cmd/sdk/ (now in core/go/pkg/sdk/) - Remove duplicate RAG helper functions from internal/cmd/rag/ - Remove stale cmd/core-ide/ (now in core/ide repo) - Update IDE variant to remove core-ide import - Fix test assertion for new module name - Run go mod tidy to sync dependencies core/cli is now a pure CLI application importing core/go for packages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Claude <developers@lethean.io> Reviewed-on: #1
86 lines
2.3 KiB
Go
86 lines
2.3 KiB
Go
package dev
|
|
|
|
import (
|
|
"context"
|
|
|
|
"forge.lthn.ai/core/go/pkg/agentic"
|
|
"forge.lthn.ai/core/go/pkg/framework"
|
|
"forge.lthn.ai/core/go/pkg/git"
|
|
)
|
|
|
|
// WorkBundle contains the Core instance for dev work operations.
|
|
type WorkBundle struct {
|
|
Core *framework.Core
|
|
}
|
|
|
|
// WorkBundleOptions configures the work bundle.
|
|
type WorkBundleOptions struct {
|
|
RegistryPath string
|
|
AllowEdit bool // Allow agentic to use Write/Edit tools
|
|
}
|
|
|
|
// NewWorkBundle creates a bundle for dev work operations.
|
|
// Includes: dev (orchestration), git, agentic services.
|
|
func NewWorkBundle(opts WorkBundleOptions) (*WorkBundle, error) {
|
|
c, err := framework.New(
|
|
framework.WithService(NewService(ServiceOptions{
|
|
RegistryPath: opts.RegistryPath,
|
|
})),
|
|
framework.WithService(git.NewService(git.ServiceOptions{})),
|
|
framework.WithService(agentic.NewService(agentic.ServiceOptions{
|
|
AllowEdit: opts.AllowEdit,
|
|
})),
|
|
framework.WithServiceLock(),
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &WorkBundle{Core: c}, nil
|
|
}
|
|
|
|
// Start initialises the bundle services.
|
|
func (b *WorkBundle) Start(ctx context.Context) error {
|
|
return b.Core.ServiceStartup(ctx, nil)
|
|
}
|
|
|
|
// Stop shuts down the bundle services.
|
|
func (b *WorkBundle) Stop(ctx context.Context) error {
|
|
return b.Core.ServiceShutdown(ctx)
|
|
}
|
|
|
|
// StatusBundle contains the Core instance for status-only operations.
|
|
type StatusBundle struct {
|
|
Core *framework.Core
|
|
}
|
|
|
|
// StatusBundleOptions configures the status bundle.
|
|
type StatusBundleOptions struct {
|
|
RegistryPath string
|
|
}
|
|
|
|
// NewStatusBundle creates a bundle for status-only operations.
|
|
// Includes: dev (orchestration), git services. No agentic - commits not available.
|
|
func NewStatusBundle(opts StatusBundleOptions) (*StatusBundle, error) {
|
|
c, err := framework.New(
|
|
framework.WithService(NewService(ServiceOptions(opts))),
|
|
framework.WithService(git.NewService(git.ServiceOptions{})),
|
|
// No agentic service - TaskCommit will be unhandled
|
|
framework.WithServiceLock(),
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &StatusBundle{Core: c}, nil
|
|
}
|
|
|
|
// Start initialises the bundle services.
|
|
func (b *StatusBundle) Start(ctx context.Context) error {
|
|
return b.Core.ServiceStartup(ctx, nil)
|
|
}
|
|
|
|
// Stop shuts down the bundle services.
|
|
func (b *StatusBundle) Stop(ctx context.Context) error {
|
|
return b.Core.ServiceShutdown(ctx)
|
|
}
|