
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
An SSHKit backend that allows you to execute interactive commands on your servers. Remote commands that you might want to use this for:
less
Add this line to your application's Gemfile:
gem 'sshkit-interactive'
And then execute:
$ bundle
If you're using Capistrano, add the following to your Capfile:
require 'sshkit/interactive'
Running interactive commands will make a system call to ssh
under the hood.
Using the DSL, simply put the command within the run_interactively
block. In Capistrano, it might look something like this:
namespace :rails do
desc "Run Rails console"
task :console do
run_interactively primary(:app) do
execute(:rails, :console)
end
end
end
It is also possible to set directory and user the Capistrano way:
namespace :rails do
desc "Run Rails console"
task :console do
run_interactively primary(:app) do
within current_path do
as user: :foobar do
execute(:rails, :console)
end
end
end
end
end
And it is possible to set the shell to be used:
namespace :foo do
task :bar do
run_interactively primary(:app), shell: '/bin/bash' do
...
end
end
end
### Manually setting the backend
Use the [interactive backend](lib/sshkit/interactive/backend.rb) and execute commands as normal:
```ruby
SSHKit.config.backend = SSHKit::Interactive::Backend
hosts = %w{my.server.com}
on hosts do |host|
execute(:vim)
end
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that sshkit-interactive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.